lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 25 lines 643 B view raw
1{ stdenv, fetchgit, nix }: 2 3stdenv.mkDerivation { 4 name = "nix-plugins-1.0.0"; 5 6 src = fetchgit { 7 url = git://github.com/shlevy/nix-plugins.git; 8 rev = "refs/tags/1.0.0"; 9 sha256 = "e624de55cabc9014e77f21978d657089ae94ce161584b3d9dc3c9763658421b3"; 10 }; 11 12 buildInputs = [ nix ]; 13 14 buildFlags = [ "NIX_INCLUDE=${nix}/include" ]; 15 16 installFlags = [ "PREFIX=$(out)" ]; 17 18 meta = { 19 description = "Collection of miscellaneous plugins for the nix expression language"; 20 homepage = https://github.com/shlevy/nix-plugins; 21 license = stdenv.lib.licenses.mit; 22 platforms = stdenv.lib.platforms.all; 23 broken = true; 24 }; 25}