Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / nix-plugins / default.nix
blob6f285fdff367564040c2bfb734b94b824023fcb9
1 { lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }:
3 stdenv.mkDerivation rec {
4   pname = "nix-plugins";
5   version = "12.0.0";
7   src = fetchFromGitHub {
8     owner = "shlevy";
9     repo = "nix-plugins";
10     rev = version;
11     hash = "sha256-VJqLfOT7y32Jupl57YXxqeDPy0tOWi46tRLN1QUDIow=";
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   };