summary refs log blame commit diff
path: root/pkgs/development/libraries/qjson/default.nix
blob: 6d84e60912707fd6f3c7ef08a0d4a03e910a11f9 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                        

                         
                    
                  
 


                         
                  
                                                                    



                              



                                                        


                                 
{ stdenv, fetchFromGitHub, cmake, qt4 }:

stdenv.mkDerivation rec {
  version = "0.9.0";
  pname = "qjson";

  src = fetchFromGitHub {
    owner = "flavio";
    repo = "qjson";
    rev = version;
    sha256 = "1f4wnxzx0qdmxzc7hqk28m0sva7z9p9xmxm6aifvjlp0ha6pmfxs";
  };

  buildInputs = [ cmake qt4 ];

  meta = with stdenv.lib; {
    description = "Lightweight data-interchange format";
    homepage = http://qjson.sourceforge.net/;
    license = licenses.lgpl21;
    inherit (qt4.meta) platforms;
  };
}