forked from mirrors/nixpkgs
142cef0a9e
svn path=/nixu/trunk/; revision=3738
22 lines
1,020 B
Nix
22 lines
1,020 B
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;
|
|
|
|
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;};
|
|
|
|
everything = [boot sysvinit kernel];
|
|
}
|