depot/third_party/nixpkgs/pkgs/tools/filesystems/squashfs-tools-ng/default.nix
Default email 1ffc76754d Project import generated by Copybara.
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
2020-07-18 18:06:22 +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.0";
src = fetchurl {
url = "https://infraroot.at/pub/squashfs/squashfs-tools-ng-${version}.tar.xz";
sha256 = "1dpx0a200s46s1dxp64hkn765vap0hzmyyvmq7wrmcs81mvlrd0l";
};
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;
};
}