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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.2 KiB
Nix
Raw Normal View History

2021-03-03 17:05:04 +03:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, help2man
, lz4
2021-03-03 14:51:59 +03:00
, lzo
, nixosTests
, which
, xz
, zlib
, zstd
2016-09-13 02:08:09 +03:00
}:
2021-03-03 17:05:04 +03:00
stdenv.mkDerivation rec {
pname = "squashfs";
version = "4.5.1";
2016-09-13 00:11:37 +03:00
src = fetchFromGitHub {
owner = "plougher";
repo = "squashfs-tools";
2021-03-03 17:05:04 +03:00
rev = version;
sha256 = "sha256-Y3ZPjeE9HN1F+NtGe6EchYziWrTPVQ4SuKaCvNbXMKI=";
};
2013-04-12 17:25:53 +04:00
patches = [
# This patch adds an option to pad filesystems (increasing size) in
# exchange for better chunking / binary diff calculation.
./4k-align.patch
2021-01-15 12:19:50 +03:00
] ++ lib.optional stdenv.isDarwin ./darwin.patch;
buildInputs = [ zlib xz zstd lz4 lzo which help2man ];
2021-03-03 17:05:04 +03:00
preBuild = ''
cd squashfs-tools
'' ;
2013-04-12 17:25:53 +04:00
installFlags = [
"INSTALL_DIR=${placeholder "out"}/bin"
"INSTALL_MANPAGES_DIR=${placeholder "out"}/share/man/man1"
];
2013-04-12 17:25:53 +04:00
2021-03-03 17:05:04 +03:00
makeFlags = [
"XZ_SUPPORT=1"
"ZSTD_SUPPORT=1"
"LZ4_SUPPORT=1"
"LZO_SUPPORT=1"
];
2013-04-12 17:25:53 +04:00
passthru.tests = {
nixos-iso-boots-and-verifies = nixosTests.boot.biosCdrom;
};
2021-03-03 17:05:04 +03:00
meta = with lib; {
homepage = "https://github.com/plougher/squashfs-tools";
description = "Tool for creating and unpacking squashfs filesystems";
2021-03-03 17:05:04 +03:00
platforms = platforms.unix;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ruuda ];
};
}