depot/third_party/nixpkgs/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

24 lines
682 B
Nix

{ stdenv, lib, fetchurl, doxygen, graphviz, perl, pkgconfig
, lz4, lzo, xz, zlib, zstd
}:
stdenv.mkDerivation rec {
pname = "squashfs-tools-ng";
version = "1.0.1";
src = fetchurl {
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
sha256 = "120x2hlbhpm90bzxz70z764552ffrjpidmp1y6gafx70zp0hrks4";
};
nativeBuildInputs = [ doxygen graphviz pkgconfig perl ];
buildInputs = [ zlib xz lz4 lzo zstd ];
meta = with lib; {
homepage = "https://github.com/AgentD/squashfs-tools-ng";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ qyliss ];
platforms = platforms.unix;
broken = stdenv.isDarwin;
};
}