2019-12-16 12:12:48 +00:00
|
|
|
{ brotli, cmake, pkgconfig, fetchFromGitHub, stdenv, static ? false }:
|
2017-12-29 10:38:08 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "woff2";
|
2017-12-29 10:38:08 +00:00
|
|
|
version = "1.0.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "woff2";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "13l4g536h0pr84ww4wxs2za439s0xp1va55g6l478rfbb1spp44y";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
|
2019-12-16 12:12:48 +00:00
|
|
|
# Need to explicitly link to brotlicommon
|
|
|
|
patches = stdenv.lib.optional static ./brotli-static.patch;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}" ]
|
|
|
|
++ stdenv.lib.optional static "-DCMAKE_SKIP_RPATH:BOOL=TRUE";
|
2017-12-29 10:38:08 +00:00
|
|
|
|
2018-03-15 00:19:39 +00:00
|
|
|
propagatedBuildInputs = [ brotli ];
|
2017-12-29 10:38:08 +00:00
|
|
|
|
2019-12-16 12:12:48 +00:00
|
|
|
postPatch = ''
|
|
|
|
# without this binaries only get built if shared libs are disable
|
2017-12-29 10:38:08 +00:00
|
|
|
sed 's@^if (NOT BUILD_SHARED_LIBS)$@if (TRUE)@g' -i CMakeLists.txt
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Webfont compression reference code";
|
2019-12-16 12:12:48 +00:00
|
|
|
homepage = "https://github.com/google/woff2";
|
2017-12-29 10:38:08 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.hrdinka ];
|
2018-05-30 02:20:56 +01:00
|
|
|
platforms = platforms.unix;
|
2017-12-29 10:38:08 +00:00
|
|
|
};
|
|
|
|
}
|