mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
1f7a8c8ae9
svn path=/nixu/trunk/; revision=785
10 lines
185 B
Nix
10 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;
|
|
}
|