mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
85bbb5e447
- ssh - shadowutils - ping - vim - less - strace - ... svn path=/nixu/trunk/; revision=1243
17 lines
559 B
Nix
17 lines
559 B
Nix
{ stdenv, bash, coreutils, findutils, utillinux, sysvinit, e2fsprogs
|
|
, nettools, nix, subversion, gcc, wget, which, vim, less, screen, openssh
|
|
, binutils, strace, shadowutils, iputils, gnumake}:
|
|
|
|
derivation {
|
|
name = "boot";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
boot = ./boot.sh;
|
|
halt = ./halt.sh;
|
|
login = ./login.sh;
|
|
env = ./env.sh;
|
|
inherit stdenv bash coreutils findutils utillinux sysvinit
|
|
e2fsprogs nettools nix subversion gcc wget which vim less screen
|
|
openssh binutils strace shadowutils iputils gnumake;
|
|
}
|