2021-03-03 06:05:04 -08:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, zlib
|
|
|
|
, xz
|
2021-01-10 02:22:35 -08:00
|
|
|
, lz4
|
2021-03-03 03:51:59 -08:00
|
|
|
, lzo
|
2018-12-27 05:13:48 -08:00
|
|
|
, zstd
|
2016-09-12 16:08:09 -07:00
|
|
|
}:
|
|
|
|
|
2021-03-03 06:05:04 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "squashfs";
|
2019-09-07 07:12:07 -07:00
|
|
|
version = "4.4";
|
2009-04-23 06:31:10 -07:00
|
|
|
|
2016-09-12 14:11:37 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "plougher";
|
|
|
|
repo = "squashfs-tools";
|
2021-03-03 06:05:04 -08:00
|
|
|
rev = version;
|
2019-09-07 07:12:07 -07:00
|
|
|
sha256 = "0697fv8n6739mcyn57jclzwwbbqwpvjdfkv1qh9s56lvyqnplwaw";
|
2006-09-08 08:19:43 -07:00
|
|
|
};
|
2013-04-12 06:25:53 -07:00
|
|
|
|
2018-05-08 04:19:14 -07:00
|
|
|
patches = [
|
2018-11-17 07:44:19 -08:00
|
|
|
# This patch adds an option to pad filesystems (increasing size) in
|
|
|
|
# exchange for better chunking / binary diff calculation.
|
2019-09-07 09:58:31 -07:00
|
|
|
./4k-align.patch
|
2021-02-28 10:03:50 -08:00
|
|
|
# Add -no-hardlinks option. This is a rebased version of
|
|
|
|
# c37bb4da4a5fa8c1cf114237ba364692dd522262, can be removed
|
|
|
|
# when upgrading to the next version after 4.4
|
|
|
|
./0001-Mksquashfs-add-no-hardlinks-option.patch
|
2021-01-15 01:19:50 -08:00
|
|
|
] ++ lib.optional stdenv.isDarwin ./darwin.patch;
|
2018-05-08 04:19:14 -07:00
|
|
|
|
2021-03-03 03:51:59 -08:00
|
|
|
buildInputs = [ zlib xz zstd lz4 lzo ];
|
2009-04-23 06:31:10 -07:00
|
|
|
|
2021-03-03 06:05:04 -08:00
|
|
|
preBuild = ''
|
|
|
|
cd squashfs-tools
|
|
|
|
'' ;
|
2013-04-12 06:25:53 -07:00
|
|
|
|
2021-03-03 06:05:04 -08:00
|
|
|
installFlags = [ "INSTALL_DIR=${placeholder "out"}/bin" ];
|
2013-04-12 06:25:53 -07:00
|
|
|
|
2021-03-03 06:05:04 -08:00
|
|
|
makeFlags = [
|
|
|
|
"XZ_SUPPORT=1"
|
|
|
|
"ZSTD_SUPPORT=1"
|
|
|
|
"LZ4_SUPPORT=1"
|
|
|
|
"LZO_SUPPORT=1"
|
|
|
|
];
|
2013-04-12 06:25:53 -07:00
|
|
|
|
2021-03-03 06:05:04 -08:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/plougher/squashfs-tools";
|
2009-06-05 06:52:24 -07:00
|
|
|
description = "Tool for creating and unpacking squashfs filesystems";
|
2021-03-03 06:05:04 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ ruuda ];
|
2009-06-05 06:52:24 -07:00
|
|
|
};
|
2006-09-08 08:19:43 -07:00
|
|
|
}
|