nixpkgs/pkgs/development/guile-modules/guile-json/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
704 B
Nix
Raw Normal View History

2021-06-12 05:11:21 +00:00
{ lib
, stdenv
, fetchurl
, guile
, texinfo
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "guile-json";
2022-09-28 18:56:16 +00:00
version = "4.7.2";
2021-06-12 05:11:21 +00:00
src = fetchurl {
url = "mirror://savannah/guile-json/${pname}-${version}.tar.gz";
2022-09-28 18:56:16 +00:00
sha256 = "sha256-lCq37FtAhWeZwMqfuBkhrxf8Q2CuvvHMjLH2rZIg1Rk=";
2021-06-12 05:11:21 +00:00
};
nativeBuildInputs = [
pkg-config texinfo
];
buildInputs = [
guile
];
2022-10-04 11:51:14 +00:00
doCheck = true;
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
2021-06-12 05:11:21 +00:00
meta = with lib; {
description = "JSON Bindings for GNU Guile";
homepage = "https://savannah.nongnu.org/projects/guile-json";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ethancedwards8 ];
2022-05-16 08:34:21 +00:00
platforms = platforms.all;
2021-06-12 05:11:21 +00:00
};
}