dotfiles/overlays/perl/IOCompressBrotli.nix

22 lines
520 B
Nix
Raw Normal View History

{
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];
};
}