2021-03-03 15:05:04 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2021-08-01 11:28:58 +02:00
|
|
|
, fetchpatch
|
2021-03-03 15:05:04 +01:00
|
|
|
, zlib
|
|
|
|
, xz
|
2021-01-10 11:22:35 +01:00
|
|
|
, lz4
|
2021-03-03 12:51:59 +01:00
|
|
|
, lzo
|
2018-12-27 14:13:48 +01:00
|
|
|
, zstd
|
2021-08-01 11:31:07 +02:00
|
|
|
, nixosTests
|
2016-09-13 01:08:09 +02:00
|
|
|
}:
|
|
|
|
|
2021-03-03 15:05:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "squashfs";
|
2021-07-24 09:16:13 +02:00
|
|
|
version = "4.5";
|
2009-04-23 15:31:10 +02:00
|
|
|
|
2016-09-12 23:11:37 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "plougher";
|
|
|
|
repo = "squashfs-tools";
|
2021-03-03 15:05:04 +01:00
|
|
|
rev = version;
|
2021-07-24 09:16:13 +02:00
|
|
|
sha256 = "1nanwz5qvsakxfm37md5i7xqagv69nfik9hpj8qlp6ymw266vgxr";
|
2006-09-08 17:19:43 +02:00
|
|
|
};
|
2013-04-12 15:25:53 +02:00
|
|
|
|
2018-05-08 13:19:14 +02:00
|
|
|
patches = [
|
2018-11-17 16:44:19 +01:00
|
|
|
# This patch adds an option to pad filesystems (increasing size) in
|
|
|
|
# exchange for better chunking / binary diff calculation.
|
2019-09-07 18:58:31 +02:00
|
|
|
./4k-align.patch
|
2021-08-01 11:28:58 +02:00
|
|
|
# Otherwise sizes of some files may break in our ISO; see
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/132286
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/plougher/squashfs-tools/commit/19b161c1cd3e31f7a396ea92dea4390ad43f27b9.diff";
|
|
|
|
sha256 = "15ng8m2my3a6a9hnfx474bip2vwdh08hzs2k0l5gwd36jv2z1h3f";
|
|
|
|
})
|
2021-01-15 10:19:50 +01:00
|
|
|
] ++ lib.optional stdenv.isDarwin ./darwin.patch;
|
2018-05-08 13:19:14 +02:00
|
|
|
|
2021-03-03 12:51:59 +01:00
|
|
|
buildInputs = [ zlib xz zstd lz4 lzo ];
|
2009-04-23 15:31:10 +02:00
|
|
|
|
2021-03-03 15:05:04 +01:00
|
|
|
preBuild = ''
|
|
|
|
cd squashfs-tools
|
|
|
|
'' ;
|
2013-04-12 15:25:53 +02:00
|
|
|
|
2021-03-03 15:05:04 +01:00
|
|
|
installFlags = [ "INSTALL_DIR=${placeholder "out"}/bin" ];
|
2013-04-12 15:25:53 +02:00
|
|
|
|
2021-03-03 15:05:04 +01:00
|
|
|
makeFlags = [
|
|
|
|
"XZ_SUPPORT=1"
|
|
|
|
"ZSTD_SUPPORT=1"
|
|
|
|
"LZ4_SUPPORT=1"
|
|
|
|
"LZO_SUPPORT=1"
|
|
|
|
];
|
2013-04-12 15:25:53 +02:00
|
|
|
|
2021-08-01 11:31:07 +02:00
|
|
|
passthru.tests = {
|
|
|
|
nixos-iso-boots-and-verifies = nixosTests.boot.biosCdrom;
|
|
|
|
};
|
|
|
|
|
2021-03-03 15:05:04 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/plougher/squashfs-tools";
|
2009-06-05 15:52:24 +02:00
|
|
|
description = "Tool for creating and unpacking squashfs filesystems";
|
2021-03-03 15:05:04 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ ruuda ];
|
2009-06-05 15:52:24 +02:00
|
|
|
};
|
2006-09-08 17:19:43 +02:00
|
|
|
}
|