cc0935ebe8
- added stubs for making a bootable CD with isolinux. Still missing are kernel, boot configuration and more svn path=/nixu/trunk/; revision=3480
15 lines
620 B
Nix
15 lines
620 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 grub syslinux;
|
|
|
|
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 grub;};
|
|
|
|
everything = [boot sysvinit];
|
|
}
|