dotfiles/overlays/perl/IOCompressBrotli.nix
magic_rb 00c9628e81
Add tooling for image gallery manipulation
Signed-off-by: magic_rb <magic_rb@redalder.org>
2024-07-21 13:03:08 +02:00

22 lines
520 B
Nix

{
buildPerlPackage,
fetchurl,
lib,
FileSlurper,
Aliencmake3,
}:
buildPerlPackage {
pname = "IO-Compress-Brotli";
version = "0.017";
src = fetchurl {
url = "mirror://cpan/authors/id/T/TI/TIMLEGGE/IO-Compress-Brotli-0.017.tar.gz";
hash = "sha256-ENIvJyRHVPM4o2bKX/fDSOiezY//JSMakpGIalqA690=";
};
buildInputs = [Aliencmake3];
propagatedBuildInputs = [FileSlurper];
meta = {
description = "Read/write Brotli buffers/streams";
license = with lib.licenses; [artistic1 gpl1Plus];
};
}