mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
29 lines
758 B
Nix
29 lines
758 B
Nix
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rapidjson";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miloyip";
|
|
repo = "rapidjson";
|
|
rev = "v${version}";
|
|
sha256 = "1jixgb8w97l9gdh3inihz7avz7i770gy2j2irvvlyrq3wi41f5ab";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace CMakeLists.txt --replace "-Werror" ""
|
|
substituteInPlace example/CMakeLists.txt --replace "-Werror" ""
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fast JSON parser/generator for C++ with both SAX/DOM style API";
|
|
homepage = "http://rapidjson.org/";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ cstrahan ];
|
|
};
|
|
}
|