mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
f35cf87600
svn path=/nixpkgs/trunk/; revision=33552
9 lines
125 B
Nix
9 lines
125 B
Nix
{stdenv}: path :
|
|
|
|
import (
|
|
stdenv.mkDerivation {
|
|
name = "cygpath";
|
|
builder = ./builder.sh;
|
|
inherit path;
|
|
}
|
|
)
|