Commit Graph

7 Commits

Author SHA1 Message Date
Robert Schütz
92775fc62f rapidjson: run tests 2022-06-11 19:54:19 +00:00
Michael Livshin
b71a8621a2 rapidjson: make headers compliant with C++20
(by stealing the relevant patch from Fedora)
2021-04-23 18:05:44 +03:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
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.
2021-01-19 01:16:25 -08:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Dmitry Kalinkin
af86bf34ff
rapidjson: fix build on darwin
Disables -Werror

Alternatively one could use

  NIX_CFLAGS_COMPILE = [
    "-Wno-error=implicit-fallthrough"
    "-Wno-error=zero-as-null-pointer-constant"
    "-Wno-error=shadow"
  ];
2018-04-03 16:04:02 -04:00
xeji
81776365f4 rapidjson: fix gcc7 compile error 2018-03-08 11:42:30 +01:00
Charles Strahan
4fcc6da889
rapidjson: init at 1.1.0
A fast JSON parser/generator for C++ with both SAX/DOM style API.

See: http://rapidjson.org/
2017-08-03 00:38:33 -04:00