mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
4c6230b0a6
svn path=/nixu/trunk/; revision=3653
21 lines
903 B
Nix
21 lines
903 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 module_init_tools hotplug udev
|
|
dhcp;
|
|
|
|
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 module_init_tools
|
|
hotplug udev dhcp;};
|
|
|
|
init = (import ./init) {inherit stdenv bash coreutils utillinux e2fsprogs
|
|
nix shadowutils mingetty grubWrapper parted module_init_tools hotplug
|
|
dhcp;};
|
|
|
|
everything = [boot init sysvinit kernel];
|
|
}
|