mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
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];
|
||
|
};
|
||
|
}
|