mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
1f7a8c8ae9
svn path=/nixu/trunk/; revision=785
9 lines
185 B
Nix
9 lines
185 B
Nix
{stdenv, bash, coreutils, findutils}:
|
|
|
|
derivation {
|
|
name = "init";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = ./init.sh;
|
|
inherit stdenv bash coreutils findutils;
|
|
}
|