guile-sjson: init at 0.2.2

This commit is contained in:
The Galaxy 2023-10-31 14:26:48 +08:00
parent 04ba740f89
commit 4739992a15
No known key found for this signature in database
GPG Key ID: 37304B1FB3B67FFD

View File

@ -0,0 +1,39 @@
{ 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;
};
})