nixpkgs/pkgs/development/libraries/qjson/default.nix

23 lines
506 B
Nix
Raw Normal View History

2016-11-04 13:36:57 +00:00
{ stdenv, fetchFromGitHub, cmake, qt4 }:
stdenv.mkDerivation rec {
2017-08-21 17:50:47 +01:00
version = "0.9.0";
pname = "qjson";
2016-11-04 13:36:57 +00:00
src = fetchFromGitHub {
owner = "flavio";
repo = "qjson";
2019-09-09 00:38:31 +01:00
rev = version;
2017-08-21 17:50:47 +01:00
sha256 = "1f4wnxzx0qdmxzc7hqk28m0sva7z9p9xmxm6aifvjlp0ha6pmfxs";
};
buildInputs = [ cmake qt4 ];
2018-10-27 13:54:53 +01:00
meta = with stdenv.lib; {
description = "Lightweight data-interchange format";
homepage = http://qjson.sourceforge.net/;
license = licenses.lgpl21;
inherit (qt4.meta) platforms;
};
}