59b75e06a6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/brotli/versions. These checks were done: - built on NixOS - ran ‘/nix/store/7izjihjc6qc7z96hqvbh6y56rs7q63nd-brotli-1.0.4/bin/brotli -h’ got 0 exit code - ran ‘/nix/store/7izjihjc6qc7z96hqvbh6y56rs7q63nd-brotli-1.0.4/bin/brotli --help’ got 0 exit code - ran ‘/nix/store/7izjihjc6qc7z96hqvbh6y56rs7q63nd-brotli-1.0.4/bin/brotli -V’ and found version 1.0.4 - ran ‘/nix/store/7izjihjc6qc7z96hqvbh6y56rs7q63nd-brotli-1.0.4/bin/brotli --version’ and found version 1.0.4 - directory tree listing: https://gist.github.com/8f1f6ce7cb6e005fe8d7cb00a4f50222
60 lines
1.7 KiB
Nix
60 lines
1.7 KiB
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
|
|
# ?TODO: there's also python lib in there
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "brotli-${version}";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "brotli";
|
|
rev = "v" + version;
|
|
sha256 = "0n5snycxgwqj2v8sgxiqxq4zqh5ydx70dr7qa4ygizs02ms69n1i";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
# This breaks on Darwin because our cmake hook tries to make a build folder
|
|
# and the wonderful bazel BUILD file is already there (yay case-insensitivity?)
|
|
prePatch = "rm BUILD";
|
|
|
|
# Don't bother with "man" output for now,
|
|
# it currently only makes the manpages hard to use.
|
|
postInstall = ''
|
|
mkdir -p $out/share/man/man{1,3}
|
|
cp ../docs/*.1 $out/share/man/man1/
|
|
cp ../docs/*.3 $out/share/man/man3/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "A generic-purpose lossless compression algorithm and tool";
|
|
|
|
longDescription =
|
|
'' Brotli is a generic-purpose lossless compression algorithm that
|
|
compresses data using a combination of a modern variant of the LZ77
|
|
algorithm, Huffman coding and 2nd order context modeling, with a
|
|
compression ratio comparable to the best currently available
|
|
general-purpose compression methods. It is similar in speed with
|
|
deflate but offers more dense compression.
|
|
|
|
The specification of the Brotli Compressed Data Format is defined
|
|
in the following internet draft:
|
|
http://www.ietf.org/id/draft-alakuijala-brotli
|
|
'';
|
|
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.vcunat ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|
|
|