python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / nix-plugins / default.nix
blobe801a9c0ee55a00432ba2eccc3d268e78fb55b5b
1 { lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }:
3 stdenv.mkDerivation rec {
4   pname = "nix-plugins";
5   version = "10.0.0";
7   src = fetchFromGitHub {
8     owner = "shlevy";
9     repo = "nix-plugins";
10     rev = version;
11     hash = "sha256-7Lo+YxpiRz0+ZLFDvYMJWWK2j0CyPDRoP1wAc+OaPJY=";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
16   buildInputs = [ nix boost ];
18   meta = {
19     description = "Collection of miscellaneous plugins for the nix expression language";
20     homepage = "https://github.com/shlevy/nix-plugins";
21     license = lib.licenses.mit;
22     platforms = lib.platforms.all;
23   };