summary refs log tree commit diff
path: root/pkgs/development/web/woff2/default.nix
blob: 3480924370e2871eb54bcdcfb77b6862e1116c44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ brotli, cmake, fetchFromGitHub, stdenv }:

stdenv.mkDerivation rec {
  name = "woff2-${version}";
  version = "1.0.2";

  src = fetchFromGitHub {
    owner = "google";
    repo = "woff2";
    rev = "v${version}";
    sha256 = "13l4g536h0pr84ww4wxs2za439s0xp1va55g6l478rfbb1spp44y";
  };

  outputs = [ "out" "dev" "lib" ];

  nativeBuildInputs = [ cmake ];

  buildInputs = [ brotli ];

  # without this binaries only get built if shared libs are disable
  patchPhase = ''
    sed 's@^if (NOT BUILD_SHARED_LIBS)$@if (TRUE)@g' -i CMakeLists.txt
  '';

  meta = with stdenv.lib; {
    description = "Webfont compression reference code";
    homepage = https://github.com/google/woff2;
    license = licenses.mit;
    maintainers = [ maintainers.hrdinka ];
    platforms = platforms.linux;
  };
}