nixpkgs/pkgs/development/tools/guile/g-wrap/default.nix

35 lines
996 B
Nix
Raw Normal View History

2017-09-27 14:54:22 +00:00
{ fetchurl, stdenv, guile, guile-lib, libffi, pkgconfig, glib }:
stdenv.mkDerivation rec {
2017-09-27 14:54:22 +00:00
pname = "g-wrap";
version = "1.9.15";
src = fetchurl {
url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
2016-03-14 14:46:55 +00:00
sha256 = "0ak0bha37dfpj9kmyw1r8fj8nva639aw5xr66wr5gd3l1rqf5xhg";
};
nativeBuildInputs = [ pkgconfig ];
2017-09-27 14:54:22 +00:00
# Note: Glib support is optional, but it's quite useful (e.g., it's used by
# Guile-GNOME).
buildInputs = [ guile glib guile-lib ];
propagatedBuildInputs = [ libffi ];
2016-12-21 22:14:18 +00:00
doCheck = true;
2017-09-27 14:54:22 +00:00
meta = with stdenv.lib; {
description = "A wrapper generator for Guile";
longDescription = ''
2017-09-27 14:54:22 +00:00
G-Wrap is a tool (and Guile library) for generating function wrappers for
inter-language calls. It currently only supports generating Guile
wrappers for C functions.
'';
2018-12-01 17:32:32 +00:00
homepage = "https://www.nongnu.org/g-wrap/";
2017-09-27 14:54:22 +00:00
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ vyp ];
2017-09-27 14:54:22 +00:00
platforms = platforms.linux;
};
}