nixpkgs/pkgs/stdenv/mingw/cygpath/default.nix
Peter Simons f35cf87600 removed executable bits from Nix files
svn path=/nixpkgs/trunk/; revision=33552
2012-04-03 06:31:19 +00:00

10 lines
125 B
Nix

{stdenv}: path :
import (
stdenv.mkDerivation {
name = "cygpath";
builder = ./builder.sh;
inherit path;
}
)