2019-02-13 05:07:13 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, fetchpatch, staticOnly ? false }:
|
2016-01-20 21:28:50 +00:00
|
|
|
|
|
|
|
# ?TODO: there's also python lib in there
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "brotli";
|
2020-10-25 21:17:24 +00:00
|
|
|
version = "1.0.9";
|
2016-01-20 21:28:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "brotli";
|
|
|
|
rev = "v" + version;
|
2020-10-25 21:17:24 +00:00
|
|
|
sha256 = "z6Dhrabav1MDQ4rAcXaDv0aN+qOoh9cvoXZqEWBB13c=";
|
2016-01-20 21:28:50 +00:00
|
|
|
};
|
|
|
|
|
2018-01-02 18:34:44 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-01-20 21:28:50 +00:00
|
|
|
|
2019-02-13 05:07:13 +00:00
|
|
|
patches = stdenv.lib.optional staticOnly (fetchpatch {
|
2020-11-05 21:27:48 +00:00
|
|
|
# context from https://github.com/google/brotli/pull/655
|
|
|
|
# updated patch from https://github.com/google/brotli/pull/655
|
|
|
|
url = "https://github.com/google/brotli/commit/47a554804ceabb899ae924aaee54df806053d0d1.patch";
|
|
|
|
sha256 = "sOeXNVsCaBSD9i82GRUDrkyreGeQ7qaJWjjy/uLL0/0=";
|
2019-02-13 05:07:13 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
cmakeFlags = []
|
|
|
|
++ stdenv.lib.optional staticOnly "-DBUILD_SHARED_LIBS=OFF";
|
2018-10-17 05:19:34 +01:00
|
|
|
|
2018-01-02 10:45:29 +00:00
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
|
2018-01-23 12:29:03 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
checkTarget = "test";
|
|
|
|
|
2017-04-07 02:17:32 +01:00
|
|
|
# This breaks on Darwin because our cmake hook tries to make a build folder
|
2017-11-29 00:52:38 +00:00
|
|
|
# and the wonderful bazel BUILD file is already there (yay case-insensitivity?)
|
2020-10-25 21:17:24 +00:00
|
|
|
prePatch = ''
|
|
|
|
rm BUILD
|
|
|
|
|
|
|
|
# Upstream fixed this reference to runtime-path after the release
|
|
|
|
# and with this references g++ complains about invalid option -R
|
|
|
|
sed -i 's/ -R''${libdir}//' scripts/libbrotli*.pc.in
|
|
|
|
cat scripts/libbrotli*.pc.in
|
|
|
|
'';
|
2017-04-07 02:17:32 +01:00
|
|
|
|
2018-01-23 12:36:11 +00:00
|
|
|
# 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/
|
|
|
|
'';
|
|
|
|
|
2016-01-20 21:28:50 +00:00
|
|
|
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;
|
2020-11-09 03:11:29 +00:00
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
2016-01-20 21:28:50 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|