squashfs-tools-ng: 0.8 -> 0.9
Like all supported formats (I think), LZO is optional. I don't see any reason to bother with options for now, so I've just enabled it. Plus, there's a bug in this release that makes compilation fail if LZO is disabled due to a missing include. I've sent a fix[1] for that upstream. [1]: https://github.com/AgentD/squashfs-tools-ng/pull/41
This commit is contained in:
parent
7f738082d0
commit
5c0f1eb426
1 changed files with 4 additions and 4 deletions
|
@ -1,18 +1,18 @@
|
|||
{ stdenv, lib, fetchurl, doxygen, graphviz, perl, pkgconfig
|
||||
, lz4, xz, zlib, zstd
|
||||
, lz4, lzo, xz, zlib, zstd
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "squashfs-tools-ng";
|
||||
version = "0.8";
|
||||
version = "0.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
|
||||
sha256 = "1km18qm9kgmm39aj9yq2aaq99708nmj9cpa9lqf5bp1y617bhh7y";
|
||||
sha256 = "1jx6bga0k07cckpv0yk77kwql7rjiicf9wkbadc8yqhp463xn90q";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ doxygen graphviz pkgconfig perl ];
|
||||
buildInputs = [ zlib xz lz4 zstd ];
|
||||
buildInputs = [ zlib xz lz4 lzo zstd ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://github.com/AgentD/squashfs-tools-ng;
|
||||
|
|
Loading…
Reference in a new issue