mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 09:36:14 +01:00
00c9628e81
Signed-off-by: magic_rb <magic_rb@redalder.org>
22 lines
520 B
Nix
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];
|
|
};
|
|
}
|