2004-02-19 13:49:00 +01:00
|
|
|
{ stdenv, bash, coreutils, findutils, utillinux, sysvinit, e2fsprogs
|
2004-08-06 15:52:39 +02:00
|
|
|
, nettools, nix, subversion, gcc, wget, which, vim, less, screen, openssh
|
2004-08-06 19:22:24 +02:00
|
|
|
, binutils, strace, shadowutils, iputils, gnumake, curl, gnused, gnugrep
|
|
|
|
, gnutar, gzip}:
|
2004-02-16 10:41:00 +01:00
|
|
|
|
|
|
|
derivation {
|
2004-02-18 15:56:32 +01:00
|
|
|
name = "boot";
|
2004-02-16 10:41:00 +01:00
|
|
|
system = stdenv.system;
|
|
|
|
builder = ./builder.sh;
|
2004-02-18 15:56:32 +01:00
|
|
|
boot = ./boot.sh;
|
|
|
|
halt = ./halt.sh;
|
|
|
|
login = ./login.sh;
|
2004-02-19 13:49:00 +01:00
|
|
|
env = ./env.sh;
|
|
|
|
inherit stdenv bash coreutils findutils utillinux sysvinit
|
2004-08-06 15:52:39 +02:00
|
|
|
e2fsprogs nettools nix subversion gcc wget which vim less screen
|
2004-08-06 19:22:24 +02:00
|
|
|
openssh binutils strace shadowutils iputils gnumake curl gnused
|
|
|
|
gnutar gnugrep gzip;
|
2004-02-16 10:41:00 +01:00
|
|
|
}
|