2004-02-16 10:41:00 +01:00
|
|
|
rec {
|
2006-04-26 01:52:31 +02:00
|
|
|
inherit (import /nixpkgs/trunk/pkgs/top-level/all-packages.nix {})
|
2006-08-03 20:00:32 +02:00
|
|
|
stdenv kernel bash bashStatic coreutils coreutilsDiet findutilsWrapper
|
|
|
|
utillinux utillinuxStatic sysvinit e2fsprogsDiet e2fsprogs nettools
|
|
|
|
nixUnstable subversion gcc wget which vim less screen openssh binutils
|
|
|
|
nixStatic strace shadowutils iputils gnumake curl gnused gnutar gnugrep
|
|
|
|
gzip mingettyWrapper grubWrapper syslinux parted module_init_tools
|
|
|
|
module_init_toolsStatic udev dhcpWrapper man nano eject sysklogd mktemp
|
|
|
|
cdrtools cpio;
|
2004-02-18 11:56:07 +01:00
|
|
|
|
2006-08-03 20:00:32 +02:00
|
|
|
boot = (import ./boot) {
|
|
|
|
inherit stdenv bash bashStatic coreutils findutilsWrapper utillinux
|
|
|
|
utillinuxStatic sysvinit e2fsprogs nettools subversion gcc wget which
|
|
|
|
vim less screen openssh binutils strace shadowutils iputils gnumake curl
|
|
|
|
gnused gnutar gnugrep gzip mingettyWrapper grubWrapper parted
|
|
|
|
module_init_tools udev dhcpWrapper man nano;
|
|
|
|
nix = nixUnstable;
|
|
|
|
};
|
2004-02-18 11:56:07 +01:00
|
|
|
|
2006-08-03 20:00:32 +02:00
|
|
|
init = (import ./init) {inherit stdenv bash bashStatic coreutilsDiet
|
|
|
|
utillinux shadowutils mingettyWrapper grubWrapper parted module_init_tools
|
2006-06-25 12:42:17 +02:00
|
|
|
dhcpWrapper man nano eject e2fsprogsDiet;
|
|
|
|
nix = nixUnstable;
|
2006-08-03 20:00:32 +02:00
|
|
|
};
|
2005-08-05 15:48:22 +02:00
|
|
|
|
2006-08-03 00:34:13 +02:00
|
|
|
everything = [boot sysvinit sysklogd kernel ];
|
2004-02-16 10:41:00 +01:00
|
|
|
}
|