ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / by-name / gu / guile-sjson / package.nix
blob27ca1cf25668d966692ca3e4f077c3803d55c7d6
2   lib,
3   stdenv,
4   fetchFromGitLab,
5   autoreconfHook,
6   guile,
7   pkg-config,
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "guile-sjson";
12   version = "0.2.2";
14   src = fetchFromGitLab {
15     owner = "dustyweb";
16     repo = "guile-sjson";
17     rev = "v${finalAttrs.version}";
18     hash = "sha256-MmnEZhJTbZDIO8vWVCoTt4rGbOjfPZQ3bqAGv4ei69o=";
19   };
21   strictDeps = true;
23   nativeBuildInputs = [
24     autoreconfHook
25     guile
26     pkg-config
27   ];
29   buildInputs = [
30     guile
31   ];
33   meta = with lib; {
34     description = "S-expression based json reader/writer for Guile";
35     homepage = "https://gitlab.com/dustyweb/guile-sjson";
36     license = licenses.lgpl3Plus;
37     maintainers = with maintainers; [ galaxy ];
38     platforms = guile.meta.platforms;
39   };