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