2019-11-25 17:33:33 +00:00
|
|
|
{ stdenv, closureInfo, xorriso, syslinux, libossp_uuid
|
2006-11-02 17:56:50 +00:00
|
|
|
|
2008-08-08 18:07:04 +01:00
|
|
|
, # The file name of the resulting ISO image.
|
|
|
|
isoName ? "cd.iso"
|
2006-11-02 17:56:50 +00: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-03 23:41:57 +00:00
|
|
|
, # In addition to `contents', the closure of the store paths listed
|
2019-10-18 19:46:55 +01:00
|
|
|
# in `storeContents' are also placed in the Nix store of the CD.
|
|
|
|
# This is a list of attribute sets {object, symlink} where `object'
|
2019-10-18 19:54:54 +01:00
|
|
|
# is a store path whose closure will be copied, and `symlink' is a
|
2009-03-18 18:10:38 +00:00
|
|
|
# symlink to `object' that will be added to the CD.
|
2007-01-23 13:44:41 +00:00
|
|
|
storeContents ? []
|
2006-11-03 23:41:57 +00:00
|
|
|
|
2008-08-08 18:07:04 +01:00
|
|
|
, # Whether this should be an El-Torito bootable CD.
|
|
|
|
bootable ? false
|
2006-11-02 17:56:50 +00:00
|
|
|
|
2012-03-16 05:37:24 +00:00
|
|
|
, # Whether this should be an efi-bootable El-Torito CD.
|
|
|
|
efiBootable ? false
|
|
|
|
|
2016-03-06 23:54:38 +00:00
|
|
|
, # Whether this should be an hybrid CD (bootable from USB as well as CD).
|
2014-10-26 20:29:04 +00:00
|
|
|
usbBootable ? false
|
|
|
|
|
2008-08-08 18:07:04 +01:00
|
|
|
, # The path (in the ISO file system) of the boot image.
|
|
|
|
bootImage ? ""
|
2006-11-02 17:56:50 +00:00
|
|
|
|
2012-03-16 05:37:24 +00:00
|
|
|
, # The path (in the ISO file system) of the efi boot image.
|
|
|
|
efiBootImage ? ""
|
|
|
|
|
2014-10-26 20:29:04 +00:00
|
|
|
, # The path (outside the ISO file system) of the isohybrid-mbr image.
|
|
|
|
isohybridMbrImage ? ""
|
|
|
|
|
2020-04-24 17:12:42 +01:00
|
|
|
, # Whether to compress the resulting ISO image with zstd.
|
2020-06-09 10:39:26 +01:00
|
|
|
compressImage ? false, zstd
|
2008-06-05 14:42:18 +01:00
|
|
|
|
2008-08-08 18:07:04 +01:00
|
|
|
, # The volume ID.
|
|
|
|
volumeID ? ""
|
2006-11-02 17:56:50 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert bootable -> bootImage != "";
|
2012-03-16 05:37:24 +00:00
|
|
|
assert efiBootable -> efiBootImage != "";
|
2014-10-26 20:29:04 +00:00
|
|
|
assert usbBootable -> isohybridMbrImage != "";
|
2006-11-02 17:56:50 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2016-03-15 12:48:45 +00:00
|
|
|
name = isoName;
|
2006-11-02 17:56:50 +00:00
|
|
|
builder = ./make-iso9660-image.sh;
|
2020-11-18 12:58:24 +00:00
|
|
|
nativeBuildInputs = [ xorriso syslinux zstd libossp_uuid ];
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2018-02-07 15:50:47 +00:00
|
|
|
inherit isoName bootable bootImage compressImage volumeID efiBootImage efiBootable isohybridMbrImage usbBootable;
|
2007-01-23 13:44:41 +00: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 19:20:50 +01:00
|
|
|
|
2007-01-23 13:44:41 +00:00
|
|
|
# For obtaining the closure of `storeContents'.
|
2018-02-07 15:50:47 +00:00
|
|
|
closureInfo = closureInfo { rootPaths = map (x: x.object) storeContents; };
|
2006-11-02 17:56:50 +00:00
|
|
|
}
|