7e6a7d6418
TODO: rewrite some of the tools to use the busybox tools instead of the "normal" utilities during installation, so we can shave off another 15 MB from the installer svn path=/nixu/trunk/; revision=6063
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
rec {
|
|
inherit (import /nixpkgs/trunk/pkgs/top-level/all-packages.nix {})
|
|
stdenv kernel bash bashStatic coreutils coreutilsDiet findutilsWrapper
|
|
utillinux utillinuxStatic sysvinit e2fsprogsDiet e2fsprogs nettools
|
|
nixUnstable subversion gcc wget which vim less screen openssh binutils
|
|
nixStatic strace shadowutils iputils gnumake curl gnused gnutar gnugrep
|
|
gzip mingettyWrapper grubWrapper syslinux parted module_init_tools
|
|
module_init_toolsStatic dhcpWrapper man nano eject sysklogd mktemp
|
|
cdrtools cpio busybox;
|
|
|
|
boot = (import ./boot) {
|
|
inherit stdenv bash coreutils findutilsWrapper utillinux sysvinit
|
|
e2fsprogs nettools subversion gcc wget which vim less screen openssh
|
|
strace shadowutils iputils gnumake curl gnused gnutar gnugrep gzip
|
|
mingettyWrapper grubWrapper parted module_init_tools dhcpWrapper man
|
|
nano;
|
|
nix = nixUnstable;
|
|
};
|
|
|
|
#init = (import ./init) {inherit stdenv bash bashStatic coreutilsDiet
|
|
# utillinux shadowutils mingettyWrapper grubWrapper parted module_init_tools
|
|
# dhcpWrapper man nano eject e2fsprogsDiet;
|
|
# nix = nixUnstable;
|
|
#};
|
|
|
|
everything = [boot sysvinit sysklogd kernel];
|
|
}
|