2024-03-11 19:27:48 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
callPackage,
|
|
|
|
closureInfo,
|
|
|
|
xorriso,
|
|
|
|
syslinux,
|
|
|
|
libossp_uuid,
|
|
|
|
squashfsTools,
|
2024-12-10 19:26:33 +00:00
|
|
|
|
2008-08-08 17:07:04 +00:00
|
|
|
# The file name of the resulting ISO image.
|
|
|
|
isoName ? "cd.iso",
|
2024-12-10 19:26:33 +00:00
|
|
|
|
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 18:46:55 +00: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 18:54:54 +00: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
|
|
|
|
2024-03-11 19:27:48 +00:00
|
|
|
# In addition to `contents', the closure of the store paths listed
|
|
|
|
# in `squashfsContents' is compressed as squashfs and the result is
|
|
|
|
# placed in /nix-store.squashfs on the CD.
|
|
|
|
# FIXME: This is a performance optimization to avoid Hydra copying
|
|
|
|
# the squashfs between builders and should be removed when Hydra
|
|
|
|
# is smarter about scheduling.
|
|
|
|
squashfsContents ? [ ],
|
|
|
|
|
|
|
|
# Compression settings for squashfs
|
|
|
|
squashfsCompression ? "xz -Xdict-size 100%",
|
|
|
|
|
2008-08-08 17:07:04 +00: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 17:07:04 +00: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 16:12:42 +00:00
|
|
|
# Whether to compress the resulting ISO image with zstd.
|
2020-06-09 09:39:26 +00:00
|
|
|
compressImage ? false,
|
|
|
|
zstd,
|
2008-06-05 13:42:18 +00:00
|
|
|
|
2008-08-08 17:07:04 +00: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
|
|
|
|
2024-03-11 19:27:48 +00:00
|
|
|
let
|
|
|
|
needSquashfs = squashfsContents != [ ];
|
|
|
|
makeSquashfsDrv = callPackage ./make-squashfs.nix {
|
|
|
|
storeContents = squashfsContents;
|
|
|
|
comp = squashfsCompression;
|
|
|
|
};
|
|
|
|
in
|
2006-11-02 17:56:50 +00:00
|
|
|
stdenv.mkDerivation {
|
2016-03-15 12:48:45 +00:00
|
|
|
name = isoName;
|
2023-02-03 14:28:04 +00:00
|
|
|
__structuredAttrs = true;
|
|
|
|
|
|
|
|
buildCommandPath = ./make-iso9660-image.sh;
|
2024-03-11 19:27:48 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
xorriso
|
|
|
|
syslinux
|
|
|
|
zstd
|
|
|
|
libossp_uuid
|
|
|
|
] ++ lib.optionals needSquashfs makeSquashfsDrv.nativeBuildInputs;
|
2024-12-10 19:26:33 +00: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
|
|
|
|
|
|
|
sources = map (x: x.source) contents;
|
|
|
|
targets = map (x: x.target) contents;
|
|
|
|
|
|
|
|
objects = map (x: x.object) storeContents;
|
|
|
|
symlinks = map (x: x.symlink) storeContents;
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2024-03-11 19:27:48 +00:00
|
|
|
squashfsCommand = lib.optionalString needSquashfs makeSquashfsDrv.buildCommand;
|
|
|
|
|
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
|
|
|
}
|