c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
34 lines
704 B
Nix
34 lines
704 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, guile
|
|
, texinfo
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "guile-json";
|
|
version = "4.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/guile-json/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-lCq37FtAhWeZwMqfuBkhrxf8Q2CuvvHMjLH2rZIg1Rk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config texinfo
|
|
];
|
|
buildInputs = [
|
|
guile
|
|
];
|
|
doCheck = true;
|
|
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
|
|
|
|
meta = with lib; {
|
|
description = "JSON Bindings for GNU Guile";
|
|
homepage = "https://savannah.nongnu.org/projects/guile-json";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ethancedwards8 ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|