mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
we need parted in the installer and on the target disk for sure...
svn path=/nixu/trunk/; revision=3487
This commit is contained in:
parent
96776b9065
commit
b9617c9541
@ -1,7 +1,7 @@
|
||||
{ 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, gnugrep
|
||||
, gnutar, gzip, mingetty, grub}:
|
||||
, gnutar, gzip, mingetty, grub, parted}:
|
||||
|
||||
derivation {
|
||||
name = "boot";
|
||||
@ -14,5 +14,5 @@ derivation {
|
||||
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;
|
||||
gnutar gnugrep gzip mingetty grub parted;
|
||||
}
|
||||
|
4
pkgs.nix
4
pkgs.nix
@ -3,12 +3,12 @@ rec {
|
||||
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;
|
||||
mingetty grub syslinux parted;
|
||||
|
||||
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;};
|
||||
gnused gnutar gnugrep gzip mingetty grub parted;};
|
||||
|
||||
everything = [boot sysvinit kernel];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user