linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / nix-plugins / default.nix
blob915e733473e1560d59bbda0869fc4df24f1cdd4d
1 { lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }:
2 let version = "6.0.0"; in
3 stdenv.mkDerivation {
4   pname = "nix-plugins";
5   inherit version;
7   src = fetchFromGitHub {
8     owner = "shlevy";
9     repo = "nix-plugins";
10     rev = version;
11     sha256 = "08kxdci0sijj1hfkn3dbr7nbpb9xck0xr3xa3a0j116n4kvwb6qv";
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   };