Files
nixpkgs/pkgs/by-name/g-/g-wrap/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

51 lines
1.1 KiB
Nix

{
fetchurl,
lib,
stdenv,
guile,
guile-lib,
libffi,
pkg-config,
glib,
}:
stdenv.mkDerivation rec {
pname = "g-wrap";
version = "1.9.15";
src = fetchurl {
url = "mirror://savannah/${pname}/${pname}-${version}.tar.gz";
sha256 = "0ak0bha37dfpj9kmyw1r8fj8nva639aw5xr66wr5gd3l1rqf5xhg";
};
nativeBuildInputs = [ pkg-config ];
# 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 ];
env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
doCheck = true;
meta = with lib; {
description = "Wrapper generator for Guile";
mainProgram = "g-wrap-config";
longDescription = ''
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.
'';
homepage = "https://www.nongnu.org/g-wrap/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
};
}