forked from mirrors/nixpkgs
liblaxjson: init at 1.0.5
This commit is contained in:
parent
a00d5998da
commit
42f88b5ba7
23
pkgs/development/libraries/liblaxjson/default.nix
Normal file
23
pkgs/development/libraries/liblaxjson/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -6794,6 +6794,8 @@ let
|
|||
|
||||
libLAS = callPackage ../development/libraries/libLAS { };
|
||||
|
||||
liblaxjson = callPackage ../development/libraries/liblaxjson { };
|
||||
|
||||
liblo = callPackage ../development/libraries/liblo { };
|
||||
|
||||
liblrdf = librdf;
|
||||
|
|
Loading…
Reference in a new issue