mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 02:46:28 +00:00
7 lines
78 B
Nix
7 lines
78 B
Nix
|
{stdenv}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "perl";
|
||
|
builder = ./builder.sh;
|
||
|
}
|