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

53 lines
1.3 KiB
Nix
Raw Normal View History

2019-08-14 01:16:32 +00:00
{ fetchFromGitHub
, fetchurl
, lz4 ? null
, lz4Support ? false
, lzo
, lib, stdenv
2019-08-14 01:16:32 +00:00
, xz
, zlib
}:
assert lz4Support -> (lz4 != null);
let
patch = fetchFromGitHub {
owner = "devttys0";
repo = "sasquatch";
rev = "3e0cc40fc6dbe32bd3a5e6c553b3320d5d91ceed";
sha256 = "19lhndjv7v9w6nmszry63zh5rqii9v7wvsbpc2n6q606hyz955g2";
} + "/patches/patch0.txt";
in
stdenv.mkDerivation rec {
pname = "sasquatch";
version = "4.3";
src = fetchurl {
url = "mirror://sourceforge/squashfs/squashfs4.3.tar.gz";
2019-08-14 01:16:32 +00:00
sha256 = "1xpklm0y43nd9i6jw43y2xh5zvlmj9ar2rvknh0bh7kv8c95aq0d";
};
2021-03-14 18:12:53 +00:00
buildInputs = [ xz lzo xz zlib ]
2021-01-15 09:19:50 +00:00
++ lib.optional lz4Support lz4;
2019-08-14 01:16:32 +00:00
patches = [ patch ];
patchFlags = [ "-p0" ];
postPatch = ''
cd squashfs-tools
'';
2019-11-05 01:10:31 +00:00
installFlags = [ "INSTALL_DIR=\${out}/bin" ];
2019-08-14 01:16:32 +00:00
makeFlags = [ "XZ_SUPPORT=1" ]
2021-01-15 09:19:50 +00:00
++ lib.optional lz4Support "LZ4_SUPPORT=1";
2019-08-14 01:16:32 +00:00
meta = with lib; {
2019-08-14 01:16:32 +00:00
homepage = "https://github.com/devttys0/sasquatch";
description = "Set of patches to the standard unsquashfs utility (part of squashfs-tools) that attempts to add support for as many hacked-up vendor-specific SquashFS implementations as possible";
license = licenses.gpl2Plus;
maintainers = [ maintainers.pamplemousse ];
platforms = platforms.linux;
};
}