2021-07-21 11:34:51 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2023-09-17 09:39:26 +00:00
|
|
|
, fetchpatch
|
2021-07-21 11:34:51 +00:00
|
|
|
, cmake
|
2021-01-03 21:40:14 +00:00
|
|
|
, staticOnly ? stdenv.hostPlatform.isStatic
|
2023-02-12 20:09:57 +00:00
|
|
|
, testers
|
2021-01-03 21:40:14 +00:00
|
|
|
}:
|
2016-01-20 21:28:50 +00:00
|
|
|
|
|
|
|
# ?TODO: there's also python lib in there
|
|
|
|
|
2023-02-12 20:09:57 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "brotli";
|
2023-09-11 10:10:53 +00:00
|
|
|
version = "1.1.0";
|
2016-01-20 21:28:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "brotli";
|
2023-02-12 20:09:57 +00:00
|
|
|
rev = "v${finalAttrs.version}";
|
2023-09-11 10:10:53 +00:00
|
|
|
hash = "sha256-MvceRcle2dSkkucC2PlsCizsIf8iv95d8Xjqew266wc=";
|
2016-01-20 21:28:50 +00:00
|
|
|
};
|
|
|
|
|
2023-09-17 09:39:26 +00:00
|
|
|
patches = [
|
|
|
|
# revert runpath change, breaks curl on darwin:
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/254532#issuecomment-1722337476
|
|
|
|
(fetchpatch {
|
|
|
|
name = "revert-runpath.patch";
|
|
|
|
url = "https://github.com/google/brotli/commit/f842c1bcf9264431cd3b15429a72b7dafbe80509.patch";
|
|
|
|
hash = "sha256-W3LY3EjoHP74YsKOOcYQrzo+f0HbooOvEbnOibtN6TM=";
|
|
|
|
revert = true;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-01-02 18:34:44 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-01-20 21:28:50 +00:00
|
|
|
|
2021-07-21 11:34:51 +00:00
|
|
|
cmakeFlags = lib.optional staticOnly "-DBUILD_SHARED_LIBS=OFF";
|
2018-10-17 04:19:34 +00: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";
|
|
|
|
|
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/
|
|
|
|
'';
|
|
|
|
|
2023-02-12 20:09:57 +00:00
|
|
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-07-21 11:34:51 +00:00
|
|
|
homepage = "https://github.com/google/brotli";
|
2016-01-20 21:28:50 +00:00
|
|
|
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 ];
|
2023-02-12 20:09:57 +00:00
|
|
|
pkgConfigModules = [
|
|
|
|
"libbrotlidec"
|
|
|
|
"libbrotlienc"
|
|
|
|
];
|
2016-01-20 21:28:50 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2023-02-12 20:09:57 +00:00
|
|
|
})
|