40 lines
967 B
Nix
40 lines
967 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, guile
|
|
, texinfo
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "guile-json";
|
|
version = "4.5.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/guile-json/${pname}-${version}.tar.gz";
|
|
sha256 = "GrBG7DaxxEwEGsJ1Vo2Bh4TXH6uaXZX5Eoz+iiUFGTM=";
|
|
};
|
|
|
|
postConfigure = ''
|
|
sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site%' Makefile;
|
|
sed -i '/objdir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile;
|
|
sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site/json%' json/Makefile;
|
|
sed -i '/objdir\s*=/s%=.*%=''${out}/share/guile/ccache/json%' json/Makefile;
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config texinfo
|
|
];
|
|
buildInputs = [
|
|
guile
|
|
];
|
|
|
|
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.linux;
|
|
};
|
|
}
|