mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
guile-sjson: init at 0.2.2
This commit is contained in:
parent
04ba740f89
commit
4739992a15
39
pkgs/by-name/gu/guile-sjson/package.nix
Normal file
39
pkgs/by-name/gu/guile-sjson/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user