summary refs log tree commit diff
path: root/pkgs/development/libraries/nix-plugins/default.nix
blob: 2c208ce86bbcea102a446ae01b0848d70a09dff6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchgit, nix }:

stdenv.mkDerivation {
  name = "nix-plugins-1.0.0";

  src = fetchgit {
    url = git://github.com/shlevy/nix-plugins.git;
    rev = "refs/tags/1.0.0";
    sha256 = "e624de55cabc9014e77f21978d657089ae94ce161584b3d9dc3c9763658421b3";
  };

  buildInputs = [ nix ];

  buildFlags = [ "NIX_INCLUDE=${nix}/include" ];

  installFlags = [ "PREFIX=$(out)" ];

  meta = {
    description = "Collection of miscellaneous plugins for the nix expression language";
    homepage = https://github.com/shlevy/nix-plugins;
    license = stdenv.lib.licenses.mit;
    maintaners = [ stdenv.lib.maintainers.shlevy ];
    platforms = stdenv.lib.platforms.all;
    broken = true;
  };
}