mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 04:03:04 +00:00
10 lines
125 B
Nix
10 lines
125 B
Nix
|
{stdenv}: path :
|
||
|
|
||
|
import (
|
||
|
stdenv.mkDerivation {
|
||
|
name = "cygpath";
|
||
|
builder = ./builder.sh;
|
||
|
inherit path;
|
||
|
}
|
||
|
)
|