3
0
Fork 0
forked from mirrors/nixpkgs

liblaxjson: init at 1.0.5

This commit is contained in:
Andrew Kelley 2015-06-16 02:04:55 -07:00
parent a00d5998da
commit 42f88b5ba7
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
version = "1.0.5";
name = "liblaxjson-${version}";
src = fetchFromGitHub {
owner = "andrewrk";
repo = "liblaxjson";
rev = "${version}";
sha256 = "01iqbpbhnqfifhv82m6hi8190w5sdim4qyrkss7z1zyv3gpchc5s";
};
buildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "Library for parsing JSON config files";
homepage = https://github.com/andrewrk/liblaxjson;
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.andrewrk ];
};
}

View file

@ -6794,6 +6794,8 @@ let
libLAS = callPackage ../development/libraries/libLAS { };
liblaxjson = callPackage ../development/libraries/liblaxjson { };
liblo = callPackage ../development/libraries/liblo { };
liblrdf = librdf;