9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
29 lines
760 B
Nix
29 lines
760 B
Nix
{ stdenv, lib, fetchFromGitHub, pkg-config, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rapidjson";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "miloyip";
|
|
repo = "rapidjson";
|
|
rev = "v${version}";
|
|
sha256 = "1jixgb8w97l9gdh3inihz7avz7i770gy2j2irvvlyrq3wi41f5ab";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config 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 ];
|
|
};
|
|
}
|