a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
25 lines
701 B
Nix
25 lines
701 B
Nix
{ stdenv, lib, fetchurl, doxygen, graphviz, perl, pkg-config
|
|
, bzip2, lz4, lzo, xz, zlib, zstd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "squashfs-tools-ng";
|
|
version = "1.1.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
|
|
sha256 = "06pnr3ilywqxch942l8xdg7k053xrqjkkziivx9h89bvy5j7hgvg";
|
|
};
|
|
|
|
nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
|
|
buildInputs = [ bzip2 zlib xz lz4 lzo zstd ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/AgentD/squashfs-tools-ng";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ qyliss ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|