2021-01-17 09:17:16 +00:00
|
|
|
{ stdenv, lib, fetchurl, doxygen, graphviz, perl, pkg-config
|
2021-05-12 17:43:21 +01:00
|
|
|
, bzip2, lz4, lzo, xz, zlib, zstd
|
2019-11-07 18:33:09 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "squashfs-tools-ng";
|
2021-08-18 08:03:06 +01:00
|
|
|
version = "1.1.3";
|
2019-11-07 18:33:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
|
2021-08-18 08:03:06 +01:00
|
|
|
sha256 = "sha256-q84Pz5qK4cM1Lk5eh+Gwd/VEEdpRczLqg7XnzpSN1w0=";
|
2019-11-07 18:33:09 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
|
2021-05-12 17:43:21 +01:00
|
|
|
buildInputs = [ bzip2 zlib xz lz4 lzo zstd ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2019-11-07 18:33:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/AgentD/squashfs-tools-ng";
|
2019-11-07 18:33:09 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ qyliss ];
|
|
|
|
platforms = platforms.unix;
|
2021-03-28 14:25:06 +01:00
|
|
|
|
|
|
|
# TODO: Remove once nixpkgs uses newer SDKs that supports '*at' functions.
|
|
|
|
# Probably macOS SDK 10.13 or later. Check the current version in
|
|
|
|
# ../../../../os-specific/darwin/apple-sdk/default.nix
|
|
|
|
#
|
|
|
|
# From the build logs:
|
|
|
|
#
|
|
|
|
# > Undefined symbols for architecture x86_64:
|
|
|
|
# > "_utimensat", referenced from:
|
|
|
|
# > _set_attribs in rdsquashfs-restore_fstree.o
|
|
|
|
# > ld: symbol(s) not found for architecture x86_64
|
2021-05-24 15:50:03 +01:00
|
|
|
broken = stdenv.isDarwin && stdenv.isx86_64;
|
2019-11-07 18:33:09 +00:00
|
|
|
};
|
|
|
|
}
|