b39fca2ade
- clean up 100 MB of unused stuff on the CD svn path=/nixu/trunk/; revision=3637
18 lines
850 B
Nix
18 lines
850 B
Nix
rec {
|
|
inherit (import /nixpkgs/trunk/pkgs/system/i686-linux.nix)
|
|
stdenv kernel bash coreutils findutils utillinux sysvinit e2fsprogs
|
|
nettools nix subversion gcc wget which vim less screen openssh binutils
|
|
strace shadowutils iputils gnumake curl gnused gnutar gnugrep gzip
|
|
mingetty grubWrapper syslinux parted modutils hotplug udev;
|
|
|
|
boot = (import ./boot) {inherit stdenv kernel bash coreutils findutils
|
|
utillinux sysvinit e2fsprogs nettools nix subversion gcc wget which vim
|
|
less screen openssh binutils strace shadowutils iputils gnumake curl
|
|
gnused gnutar gnugrep gzip mingetty grubWrapper parted modutils hotplug udev;};
|
|
|
|
init = (import ./init) {inherit stdenv bash coreutils
|
|
utillinux e2fsprogs nix shadowutils mingetty grubWrapper parted modutils hotplug;};
|
|
|
|
everything = [boot init sysvinit kernel];
|
|
}
|