511b3fd83f
svn path=/nixu/trunk/; revision=1246
19 lines
639 B
Nix
19 lines
639 B
Nix
{ stdenv, bash, coreutils, findutils, utillinux, sysvinit, e2fsprogs
|
|
, nettools, nix, subversion, gcc, wget, which, vim, less, screen, openssh
|
|
, binutils, strace, shadowutils, iputils, gnumake, curl, gnused, gnugrep
|
|
, gnutar, gzip}:
|
|
|
|
derivation {
|
|
name = "boot";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
boot = ./boot.sh;
|
|
halt = ./halt.sh;
|
|
login = ./login.sh;
|
|
env = ./env.sh;
|
|
inherit stdenv bash coreutils findutils utillinux sysvinit
|
|
e2fsprogs nettools nix subversion gcc wget which vim less screen
|
|
openssh binutils strace shadowutils iputils gnumake curl gnused
|
|
gnutar gnugrep gzip;
|
|
}
|