2006-01-07 15:42:59 +00:00
|
|
|
{ stdenv, bash, bashStatic, coreutils, findutilsWrapper, utillinux, utillinuxStatic, sysvinit, e2fsprogs
|
2004-08-06 13:52:39 +00:00
|
|
|
, nettools, nix, subversion, gcc, wget, which, vim, less, screen, openssh
|
2004-08-06 17:22:24 +00:00
|
|
|
, binutils, strace, shadowutils, iputils, gnumake, curl, gnused, gnugrep
|
2006-04-25 23:52:31 +00:00
|
|
|
, gnutar, gzip, mingettyWrapper, grubWrapper, parted, module_init_tools
|
2005-08-23 15:56:17 +00:00
|
|
|
, udev, dhcpWrapper, man, nano}:
|
2004-02-16 09:41:00 +00:00
|
|
|
|
|
|
|
derivation {
|
2004-02-18 14:56:32 +00:00
|
|
|
name = "boot";
|
2004-02-16 09:41:00 +00:00
|
|
|
system = stdenv.system;
|
|
|
|
builder = ./builder.sh;
|
2004-02-18 14:56:32 +00:00
|
|
|
boot = ./boot.sh;
|
|
|
|
halt = ./halt.sh;
|
|
|
|
login = ./login.sh;
|
2004-02-19 12:49:00 +00:00
|
|
|
env = ./env.sh;
|
2006-01-07 15:42:59 +00:00
|
|
|
inherit stdenv bash bashStatic coreutils findutilsWrapper utillinux sysvinit
|
2004-08-06 13:52:39 +00:00
|
|
|
e2fsprogs nettools nix subversion gcc wget which vim less screen
|
2004-08-06 17:22:24 +00:00
|
|
|
openssh binutils strace shadowutils iputils gnumake curl gnused
|
2005-08-28 00:51:34 +00:00
|
|
|
gnutar gnugrep gzip mingettyWrapper grubWrapper parted module_init_tools
|
2005-08-23 15:56:17 +00:00
|
|
|
udev dhcpWrapper man nano;
|
2004-02-16 09:41:00 +00:00
|
|
|
}
|