2014-10-26 21:29:04 +01:00
|
|
|
{ stdenv, perl, pathsFromGraph, xorriso, syslinux
|
2006-11-02 18:56:50 +01:00
|
|
|
|
2008-08-08 19:07:04 +02:00
|
|
|
, # The file name of the resulting ISO image.
|
|
|
|
isoName ? "cd.iso"
|
2006-11-02 18:56:50 +01:00
|
|
|
|
|
|
|
, # The files and directories to be placed in the ISO file system.
|
|
|
|
# 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
|
|
|
|
|
2006-11-04 00:41:57 +01:00
|
|
|
, # In addition to `contents', the closure of the store paths listed
|
2007-01-23 14:44:41 +01:00
|
|
|
# in `packages' are also placed in the Nix store of the CD. This is
|
2009-03-18 19:10:38 +01:00
|
|
|
# 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 CD.
|
2007-01-23 14:44:41 +01:00
|
|
|
storeContents ? []
|
2006-11-04 00:41:57 +01:00
|
|
|
|
2008-08-08 19:07:04 +02:00
|
|
|
, # Whether this should be an El-Torito bootable CD.
|
|
|
|
bootable ? false
|
2006-11-02 18:56:50 +01:00
|
|
|
|
2012-03-16 06:37:24 +01:00
|
|
|
, # Whether this should be an efi-bootable El-Torito CD.
|
|
|
|
efiBootable ? false
|
|
|
|
|
2014-10-26 21:29:04 +01:00
|
|
|
, # Wheter this should be an hybrid CD (bootable from USB as well as CD).
|
|
|
|
usbBootable ? false
|
|
|
|
|
2008-08-08 19:07:04 +02:00
|
|
|
, # The path (in the ISO file system) of the boot image.
|
|
|
|
bootImage ? ""
|
2006-11-02 18:56:50 +01:00
|
|
|
|
2012-03-16 06:37:24 +01:00
|
|
|
, # The path (in the ISO file system) of the efi boot image.
|
|
|
|
efiBootImage ? ""
|
|
|
|
|
2014-10-26 21:29:04 +01:00
|
|
|
, # The path (outside the ISO file system) of the isohybrid-mbr image.
|
|
|
|
isohybridMbrImage ? ""
|
|
|
|
|
2008-06-05 15:42:18 +02:00
|
|
|
, # Whether to compress the resulting ISO image with bzip2.
|
|
|
|
compressImage ? false
|
|
|
|
|
2008-08-08 19:07:04 +02:00
|
|
|
, # The volume ID.
|
|
|
|
volumeID ? ""
|
|
|
|
|
2006-11-02 18:56:50 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert bootable -> bootImage != "";
|
2012-03-16 06:37:24 +01:00
|
|
|
assert efiBootable -> efiBootImage != "";
|
2014-10-26 21:29:04 +01:00
|
|
|
assert usbBootable -> isohybridMbrImage != "";
|
2006-11-02 18:56:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "iso9660-image";
|
|
|
|
builder = ./make-iso9660-image.sh;
|
2014-10-26 21:29:04 +01:00
|
|
|
buildInputs = [perl xorriso syslinux];
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-10-26 21:29:04 +01:00
|
|
|
inherit isoName bootable bootImage compressImage volumeID pathsFromGraph efiBootImage efiBootable isohybridMbrImage usbBootable;
|
2007-01-23 14:44:41 +01:00
|
|
|
|
|
|
|
# !!! 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;
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2007-01-23 14:44:41 +01:00
|
|
|
# For obtaining the closure of `storeContents'.
|
|
|
|
exportReferencesGraph =
|
2007-01-23 15:34:44 +01:00
|
|
|
map (x: [("closure-" + baseNameOf x.object) x.object]) storeContents;
|
2006-11-02 18:56:50 +01:00
|
|
|
}
|