2016-09-12 23:08:09 +00:00
|
|
|
{ stdenv, fetchFromGitHub, zlib, xz
|
|
|
|
, lz4 ? null
|
|
|
|
, lz4Support ? false
|
2018-12-27 13:13:48 +00:00
|
|
|
, zstd
|
2016-09-12 23:08:09 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert lz4Support -> (lz4 != null);
|
2006-09-08 15:19:43 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "squashfs";
|
2019-09-07 14:12:07 +00:00
|
|
|
version = "4.4";
|
2009-04-23 13:31:10 +00:00
|
|
|
|
2016-09-12 21:11:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "plougher";
|
|
|
|
repo = "squashfs-tools";
|
2019-09-07 14:12:07 +00:00
|
|
|
sha256 = "0697fv8n6739mcyn57jclzwwbbqwpvjdfkv1qh9s56lvyqnplwaw";
|
|
|
|
# Tag "4.4" points to this commit.
|
|
|
|
rev = "52eb4c279cd283ed9802dd1ceb686560b22ffb67";
|
2006-09-08 15:19:43 +00:00
|
|
|
};
|
2013-04-12 13:25:53 +00:00
|
|
|
|
2018-05-08 11:19:14 +00:00
|
|
|
patches = [
|
2018-11-17 15:44:19 +00:00
|
|
|
# This patch adds an option to pad filesystems (increasing size) in
|
|
|
|
# exchange for better chunking / binary diff calculation.
|
2019-09-07 16:58:31 +00:00
|
|
|
./4k-align.patch
|
2018-06-01 16:21:11 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin ./darwin.patch;
|
2018-05-08 11:19:14 +00:00
|
|
|
|
2018-12-27 13:13:48 +00:00
|
|
|
buildInputs = [ zlib xz zstd ]
|
2016-09-12 23:08:09 +00:00
|
|
|
++ stdenv.lib.optional lz4Support lz4;
|
2009-04-23 13:31:10 +00:00
|
|
|
|
2012-01-20 17:43:50 +00:00
|
|
|
preBuild = "cd squashfs-tools";
|
2013-04-12 13:25:53 +00:00
|
|
|
|
2019-11-05 01:10:31 +00:00
|
|
|
installFlags = [ "INSTALL_DIR=\${out}/bin" ];
|
2013-04-12 13:25:53 +00:00
|
|
|
|
2018-12-27 13:13:48 +00:00
|
|
|
makeFlags = [ "XZ_SUPPORT=1" "ZSTD_SUPPORT=1" ]
|
2016-09-12 23:08:09 +00:00
|
|
|
++ stdenv.lib.optional lz4Support "LZ4_SUPPORT=1";
|
2013-04-12 13:25:53 +00:00
|
|
|
|
2009-06-05 13:52:24 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://squashfs.sourceforge.net/";
|
2009-06-05 13:52:24 +00:00
|
|
|
description = "Tool for creating and unpacking squashfs filesystems";
|
2018-06-01 16:21:11 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2018-05-08 11:32:06 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ ruuda ];
|
2009-06-05 13:52:24 +00:00
|
|
|
};
|
2006-09-08 15:19:43 +00:00
|
|
|
}
|