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