2021-02-05 17:12:51 +00:00
|
|
|
{ stdenv, lib, fetchurl, doxygen, graphviz, perl, pkg-config
|
2021-05-20 23:08:51 +00:00
|
|
|
, bzip2, lz4, lzo, xz, zlib, zstd
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "squashfs-tools-ng";
|
2022-04-15 01:41:22 +00:00
|
|
|
version = "1.1.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
|
2022-04-15 01:41:22 +00:00
|
|
|
sha256 = "06pnr3ilywqxch942l8xdg7k053xrqjkkziivx9h89bvy5j7hgvg";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
|
2021-05-20 23:08:51 +00:00
|
|
|
buildInputs = [ bzip2 zlib xz lz4 lzo zstd ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/AgentD/squashfs-tools-ng";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ qyliss ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|