2005-07-05 13:52:49 +00:00
|
|
|
{ stdenv, kernel, bash, coreutils, findutils, utillinux, 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
|
2005-08-14 01:40:36 +00:00
|
|
|
, gnutar, gzip, mingetty, grubWrapper, parted, modutils}:
|
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;
|
2005-07-05 13:52:49 +00:00
|
|
|
inherit stdenv kernel bash coreutils findutils 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-14 01:40:36 +00:00
|
|
|
gnutar gnugrep gzip mingetty grubWrapper parted modutils;
|
2004-02-16 09:41:00 +00:00
|
|
|
}
|