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

stdenv.mkDerivation {
  name = "SDL_ttf-2.0.11";

  src = fetchurl {
    url = http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.tar.gz;
    sha256 = "1dydxd4f5kb1288i5n5568kdk2q7f8mqjr7i7sd33nplxjaxhk3j";
  };

  buildInputs = [SDL freetype];

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

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