nixpkgs/pkgs/development/web/woff2/default.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

{ brotli, cmake, pkg-config, fetchFromGitHub, lib, stdenv
, static ? stdenv.hostPlatform.isStatic
}:
stdenv.mkDerivation rec {
pname = "woff2";
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
2021-01-23 17:15:07 +00:00
patches = lib.optional static ./brotli-static.patch;
2019-12-16 12:12:48 +00:00
nativeBuildInputs = [ cmake pkg-config ];
2019-12-16 12:12:48 +00:00
cmakeFlags = [
"-DCANONICAL_PREFIXES=ON"
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
2021-01-23 17:15:07 +00:00
] ++ lib.optional static "-DCMAKE_SKIP_RPATH:BOOL=TRUE";
propagatedBuildInputs = [ brotli ];
2019-12-16 12:12:48 +00:00
postPatch = ''
# without this binaries only get built if shared libs are disable
sed 's@^if (NOT BUILD_SHARED_LIBS)$@if (TRUE)@g' -i CMakeLists.txt
'';
meta = with lib; {
description = "Webfont compression reference code";
2019-12-16 12:12:48 +00:00
homepage = "https://github.com/google/woff2";
license = licenses.mit;
maintainers = [ maintainers.hrdinka ];
2018-05-30 01:20:56 +00:00
platforms = platforms.unix;
};
}