2018-02-07 15:50:47 +00:00
|
|
|
{ stdenv, squashfsTools, closureInfo
|
2009-06-10 14:40:35 +01:00
|
|
|
|
|
|
|
, # The root directory of the squashfs filesystem is filled with the
|
|
|
|
# closures of the Nix store paths listed here.
|
|
|
|
storeContents ? []
|
2019-01-17 13:24:44 +00:00
|
|
|
, # Compression parameters.
|
|
|
|
# For zstd compression you can use "zstd -Xcompression-level 6".
|
|
|
|
comp ? "xz -Xdict-size 100%"
|
2009-06-10 14:40:35 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "squashfs.img";
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2018-02-07 15:50:47 +00:00
|
|
|
nativeBuildInputs = [ squashfsTools ];
|
2009-06-10 14:40:35 +01:00
|
|
|
|
|
|
|
buildCommand =
|
|
|
|
''
|
2018-02-07 15:50:47 +00:00
|
|
|
closureInfo=${closureInfo { rootPaths = storeContents; }}
|
2017-12-03 01:37:45 +00:00
|
|
|
|
2009-06-10 14:40:35 +01:00
|
|
|
# Also include a manifest of the closures in a format suitable
|
|
|
|
# for nix-store --load-db.
|
2018-02-07 15:50:47 +00:00
|
|
|
cp $closureInfo/registration nix-path-registration
|
2009-06-10 14:40:35 +01:00
|
|
|
|
2021-12-08 16:26:08 +00:00
|
|
|
# 64 cores on i686 does not work
|
|
|
|
# fails with FATAL ERROR: mangle2:: xz compress failed with error code 5
|
|
|
|
if ((NIX_BUILD_CORES > 48)); then
|
|
|
|
NIX_BUILD_CORES=48
|
|
|
|
fi
|
|
|
|
|
2009-06-10 14:40:35 +01:00
|
|
|
# Generate the squashfs image.
|
2018-02-07 15:50:47 +00:00
|
|
|
mksquashfs nix-path-registration $(cat $closureInfo/store-paths) $out \
|
2021-12-08 16:26:08 +00:00
|
|
|
-no-hardlinks -keep-as-directory -all-root -b 1048576 -comp ${comp} \
|
|
|
|
-processors $NIX_BUILD_CORES
|
2009-06-10 14:40:35 +01:00
|
|
|
'';
|
|
|
|
}
|