summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL2_ttf/default.nix
blob: d1600ee8a8f49c7c819a74e852424d0d420353c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, SDL2, freetype }:

stdenv.mkDerivation rec {
  name = "SDL2_ttf-2.0.12";

  src = fetchurl {
    url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz";
    sha256 = "0vkg6lyj278mdpd52map3rfi65fbq16w67ahmmfcl77a8da60a47";
  };

  buildInputs = [SDL2 freetype];

  postInstall = "ln -s $out/include/SDL2/SDL_ttf.h $out/include/";

  meta = {
    description = "SDL TrueType library";
  };
}