nixpkgs/pkgs/tools/filesystems/squashfs/default.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

2021-03-03 14:05:04 +00:00
{ lib
, stdenv
, fetchFromGitHub
, zlib
, xz
, lz4
2021-03-03 11:51:59 +00:00
, lzo
, zstd
2016-09-12 23:08:09 +00:00
}:
2021-03-03 14:05:04 +00:00
stdenv.mkDerivation rec {
pname = "squashfs";
version = "4.4";
2016-09-12 21:11:37 +00:00
src = fetchFromGitHub {
owner = "plougher";
repo = "squashfs-tools";
2021-03-03 14:05:04 +00:00
rev = version;
sha256 = "0697fv8n6739mcyn57jclzwwbbqwpvjdfkv1qh9s56lvyqnplwaw";
};
2013-04-12 13:25:53 +00:00
patches = [
# This patch adds an option to pad filesystems (increasing size) in
# exchange for better chunking / binary diff calculation.
./4k-align.patch
# 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 09:19:50 +00:00
] ++ lib.optional stdenv.isDarwin ./darwin.patch;
2021-03-03 11:51:59 +00:00
buildInputs = [ zlib xz zstd lz4 lzo ];
2021-03-03 14:05:04 +00:00
preBuild = ''
cd squashfs-tools
'' ;
2013-04-12 13:25:53 +00:00
2021-03-03 14:05:04 +00:00
installFlags = [ "INSTALL_DIR=${placeholder "out"}/bin" ];
2013-04-12 13:25:53 +00:00
2021-03-03 14:05:04 +00:00
makeFlags = [
"XZ_SUPPORT=1"
"ZSTD_SUPPORT=1"
"LZ4_SUPPORT=1"
"LZO_SUPPORT=1"
];
2013-04-12 13:25:53 +00:00
2021-03-03 14:05:04 +00:00
meta = with lib; {
homepage = "https://github.com/plougher/squashfs-tools";
description = "Tool for creating and unpacking squashfs filesystems";
2021-03-03 14:05:04 +00:00
platforms = platforms.unix;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ruuda ];
};
}