f8cea32cf1
svn path=/nixu/trunk/; revision=3976
22 lines
1.0 KiB
Nix
22 lines
1.0 KiB
Nix
rec {
|
|
inherit (import /nixpkgs/trunk/pkgs/system/i686-linux.nix)
|
|
stdenv kernel bash coreutils coreutilsDiet findutilsWrapper utillinux sysvinit
|
|
e2fsprogsDiet e2fsprogs
|
|
nettools nix subversion gcc wget which vim less screen openssh binutils
|
|
strace shadowutils iputils gnumake curl gnused gnutar gnugrep gzip
|
|
mingettyWrapper grubWrapper syslinux parted module_init_tools hotplug udev
|
|
dhcpWrapper man nano eject sysklogd;
|
|
|
|
boot = (import ./boot) {inherit stdenv kernel bash coreutils findutilsWrapper
|
|
utillinux sysvinit e2fsprogs nettools nix subversion gcc wget which vim
|
|
less screen openssh binutils strace shadowutils iputils gnumake curl
|
|
gnused gnutar gnugrep gzip mingettyWrapper grubWrapper parted module_init_tools
|
|
hotplug udev dhcpWrapper man nano;};
|
|
|
|
init = (import ./init) {inherit stdenv bash coreutilsDiet utillinux e2fsprogsDiet
|
|
nix shadowutils mingettyWrapper grubWrapper parted module_init_tools hotplug
|
|
dhcpWrapper man nano eject;};
|
|
|
|
everything = [boot sysvinit kernel sysklogd];
|
|
}
|