Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
70 lines
1.3 KiB
Nix
70 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
help2man,
|
|
lz4,
|
|
lzo,
|
|
nixosTests,
|
|
which,
|
|
xz,
|
|
zlib,
|
|
zstd,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "squashfs";
|
|
version = "4.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "plougher";
|
|
repo = "squashfs-tools";
|
|
rev = version;
|
|
hash = "sha256-iQ+pBt+jvqI6zgZRV2MZM3CeFqiXe8Z+SS+rLOB4DLw=";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
preBuild = ''
|
|
cd squashfs-tools
|
|
'';
|
|
|
|
installFlags = [
|
|
"INSTALL_DIR=${placeholder "out"}/bin"
|
|
"INSTALL_MANPAGES_DIR=${placeholder "out"}/share/man/man1"
|
|
];
|
|
|
|
makeFlags = [
|
|
"XZ_SUPPORT=1"
|
|
"ZSTD_SUPPORT=1"
|
|
"LZ4_SUPPORT=1"
|
|
"LZMA_XZ_SUPPORT=1"
|
|
"LZO_SUPPORT=1"
|
|
];
|
|
|
|
passthru.tests = {
|
|
nixos-iso-boots-and-verifies = nixosTests.boot.biosCdrom;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/plougher/squashfs-tools";
|
|
description = "Tool for creating and unpacking squashfs filesystems";
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ ruuda ];
|
|
mainProgram = "mksquashfs";
|
|
};
|
|
}
|