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
|
2006-08-05 01:39:59 +02:00
|
|
|
module_init_toolsStatic dhcpWrapper man nano eject sysklogd mktemp
|
2006-08-07 01:59:31 +02:00
|
|
|
cdrtools cpio busybox;
|
2004-02-18 11:56:07 +01:00
|
|
|
|
2006-08-03 20:00:32 +02:00
|
|
|
boot = (import ./boot) {
|
2006-08-05 01:39:59 +02:00
|
|
|
inherit stdenv bash coreutils findutilsWrapper utillinux sysvinit
|
|
|
|
e2fsprogs nettools subversion gcc wget which vim less screen openssh
|
|
|
|
strace shadowutils iputils gnumake curl gnused gnutar gnugrep gzip
|
|
|
|
mingettyWrapper grubWrapper parted module_init_tools dhcpWrapper man
|
|
|
|
nano;
|
2006-08-03 20:00:32 +02:00
|
|
|
nix = nixUnstable;
|
|
|
|
};
|
2004-02-18 11:56:07 +01:00
|
|
|
|
2006-08-05 01:39:59 +02:00
|
|
|
#init = (import ./init) {inherit stdenv bash bashStatic coreutilsDiet
|
|
|
|
# utillinux shadowutils mingettyWrapper grubWrapper parted module_init_tools
|
|
|
|
# dhcpWrapper man nano eject e2fsprogsDiet;
|
|
|
|
# nix = nixUnstable;
|
|
|
|
#};
|
2005-08-05 15:48:22 +02:00
|
|
|
|
2006-08-05 01:39:59 +02:00
|
|
|
everything = [boot sysvinit sysklogd kernel];
|
2004-02-16 10:41:00 +01:00
|
|
|
}
|