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

25 lines
684 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, doxygen, graphviz, perl, pkg-config
, lz4, lzo, xz, zlib, zstd
2019-11-07 18:33:09 +00:00
}:
stdenv.mkDerivation rec {
pname = "squashfs-tools-ng";
2021-02-07 19:25:58 +00:00
version = "1.0.4";
2019-11-07 18:33:09 +00:00
src = fetchurl {
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
2021-02-07 19:25:58 +00:00
sha256 = "04zvpws1nk3r2kr1k5in9di9fhn4zzciyndgnxnijmhiqpyrx072";
2019-11-07 18:33:09 +00:00
};
nativeBuildInputs = [ doxygen graphviz pkg-config perl ];
buildInputs = [ zlib xz lz4 lzo zstd ];
2019-11-07 18:33:09 +00:00
meta = with lib; {
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;
broken = stdenv.isDarwin;
2019-11-07 18:33:09 +00:00
};
}