1dd3162d7c
What I want with this derivation is to allow the sheevaplug nixos to build a tarball with all the needed files to boot. Then, this can be unpacked into an SD card, or into a NFS/TFTP server, and then the user can boot the system with help of the uboot console. By now, I have only tried to build the tarball in a PC, in order to develop the nix expressions quicker. There is nothing written specialy for the Sheevaplug in all this, by now. svn path=/nixos/trunk/; revision=20035
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, perl, xz, pathsFromGraph
|
|
|
|
, # The file name of the resulting tarball
|
|
fileName ? "nixos-built.tar.bz2"
|
|
|
|
, # The files and directories to be placed in the tarball.
|
|
# This is a list of attribute sets {source, target} where `source'
|
|
# is the file system object (regular file or directory) to be
|
|
# grafted in the file system at path `target'.
|
|
contents
|
|
|
|
, # In addition to `contents', the closure of the store paths listed
|
|
# in `packages' are also placed in the Nix store of the tarball. This is
|
|
# a list of attribute sets {object, symlink} where `object' if a
|
|
# store path whose closure will be copied, and `symlink' is a
|
|
# symlink to `object' that will be added to the tarball.
|
|
storeContents ? []
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "tarball";
|
|
builder = ./make-system-tarball.sh;
|
|
buildInputs = [perl xz];
|
|
|
|
inherit fileName pathsFromGraph;
|
|
|
|
# !!! should use XML.
|
|
sources = map (x: x.source) contents;
|
|
targets = map (x: x.target) contents;
|
|
|
|
# !!! should use XML.
|
|
objects = map (x: x.object) storeContents;
|
|
symlinks = map (x: x.symlink) storeContents;
|
|
|
|
# For obtaining the closure of `storeContents'.
|
|
exportReferencesGraph =
|
|
map (x: [("closure-" + baseNameOf x.object) x.object]) storeContents;
|
|
}
|