From c785eeaaec25755b845d7811bbd2e8353bc1e411 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Thu, 4 Aug 2005 22:57:13 +0000 Subject: [PATCH] add stubs for creation of the installer via Nix expressions, similar to the bootscripts and initscripts. This will mean lots of cruft from the current fill-disk.sh can be removed. svn path=/nixu/trunk/; revision=3526 --- init/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 init/default.nix diff --git a/init/default.nix b/init/default.nix new file mode 100644 index 00000000000..b03437310c0 --- /dev/null +++ b/init/default.nix @@ -0,0 +1,9 @@ +{ stdenv, bash, coreutils, utillinux, e2fsprogs, nix, shadowutils, mingetty, grub, parted}: + +derivation { + name = "init"; + system = stdenv.system; + builder = ./builder.sh; + inherit stdenv bash coreutils utillinux e2fsprogs nix shadowutils + mingetty grub parted; +}