f35cf87600
svn path=/nixpkgs/trunk/; revision=33552
10 lines
125 B
Nix
10 lines
125 B
Nix
{stdenv}: path :
|
|
|
|
import (
|
|
stdenv.mkDerivation {
|
|
name = "cygpath";
|
|
builder = ./builder.sh;
|
|
inherit path;
|
|
}
|
|
)
|