nixpkgs/pkgs/by-name/gu/guile-sjson/package.nix
2023-10-31 14:26:48 +08:00

40 lines
747 B
Nix

{ lib
, stdenv
, fetchFromGitLab
, autoreconfHook
, guile
, pkg-config
}:
stdenv.mkDerivation (finalAttrs: {
pname = "guile-sjson";
version = "0.2.2";
src = fetchFromGitLab {
owner = "dustyweb";
repo = "guile-sjson";
rev = "v${finalAttrs.version}";
hash = "sha256-MmnEZhJTbZDIO8vWVCoTt4rGbOjfPZQ3bqAGv4ei69o=";
};
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
guile
pkg-config
];
buildInputs = [
guile
];
meta = with lib; {
description = "S-expression based json reader/writer for Guile";
homepage = "https://gitlab.com/dustyweb/guile-sjson";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ galaxy ];
platforms = guile.meta.platforms;
};
})