2021-03-09 03:18:52 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2022-03-30 09:31:56 +00:00
|
|
|
, help2man
|
2021-02-05 17:12:51 +00:00
|
|
|
, lz4
|
2021-03-09 03:18:52 +00:00
|
|
|
, lzo
|
2021-08-05 21:33:18 +00:00
|
|
|
, nixosTests
|
2022-03-30 09:31:56 +00:00
|
|
|
, which
|
|
|
|
, xz
|
|
|
|
, zlib
|
|
|
|
, zstd
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "squashfs";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "4.6.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "plougher";
|
|
|
|
repo = "squashfs-tools";
|
2021-03-09 03:18:52 +00:00
|
|
|
rev = version;
|
2023-04-29 16:46:19 +00:00
|
|
|
hash = "sha256-C/awQpp1Q/0adx3YVNTq6ruEAzcjL5G7SkOCgpvAA50=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# This patch adds an option to pad filesystems (increasing size) in
|
|
|
|
# exchange for better chunking / binary diff calculation.
|
|
|
|
./4k-align.patch
|
2023-04-29 16:46:19 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ which ]
|
|
|
|
# when cross-compiling help2man cannot run the cross-compiled binary
|
|
|
|
++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [ help2man ];
|
|
|
|
buildInputs = [ zlib xz zstd lz4 lzo ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
preBuild = ''
|
|
|
|
cd squashfs-tools
|
|
|
|
'' ;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
installFlags = [
|
|
|
|
"INSTALL_DIR=${placeholder "out"}/bin"
|
|
|
|
"INSTALL_MANPAGES_DIR=${placeholder "out"}/share/man/man1"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
makeFlags = [
|
|
|
|
"XZ_SUPPORT=1"
|
|
|
|
"ZSTD_SUPPORT=1"
|
|
|
|
"LZ4_SUPPORT=1"
|
2023-05-24 13:37:59 +00:00
|
|
|
"LZMA_XZ_SUPPORT=1"
|
2021-03-09 03:18:52 +00:00
|
|
|
"LZO_SUPPORT=1"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-08-05 21:33:18 +00:00
|
|
|
passthru.tests = {
|
|
|
|
nixos-iso-boots-and-verifies = nixosTests.boot.biosCdrom;
|
|
|
|
};
|
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/plougher/squashfs-tools";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Tool for creating and unpacking squashfs filesystems";
|
2021-03-09 03:18:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ ruuda ];
|
2022-11-21 17:40:18 +00:00
|
|
|
mainProgram = "mksquashfs";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|