summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2_ttf/default.nix
blob: d2dd8d53929ee0ab0f72e5b86fef89ebefa60f34 (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
{ lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, harfbuzz, libGL }:

stdenv.mkDerivation rec {
  pname = "SDL2_ttf";
  version = "2.20.2";

  src = fetchurl {
    url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz";
    sha256 = "sha256-ncce2TSHUhsQeixKnKa/Q/ti9r3dXCawVea5FBiiIFM=";
  };

  configureFlags = [ "--disable-harfbuzz-builtin" ]
    ++ lib.optionals stdenv.isDarwin [ "--disable-sdltest" ];

  nativeBuildInputs = [ pkg-config ];

  buildInputs = [ SDL2 freetype harfbuzz ]
    ++ lib.optional (!stdenv.isDarwin) libGL
    ++ lib.optional stdenv.isDarwin darwin.libobjc;

  meta = with lib; {
    description = "Support for TrueType (.ttf) font files with Simple Directmedia Layer";
    platforms = platforms.unix;
    license = licenses.zlib;
    homepage = "https://github.com/libsdl-org/SDL_ttf";
  };
}