2018-02-24 13:06:44 +01:00
|
|
|
{ stdenv, darwin, fetchurl, SDL2, freetype, libGL }:
|
2015-03-07 12:49:59 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-08-22 05:24:32 +02:00
|
|
|
name = "SDL2_ttf-${version}";
|
2019-01-27 07:25:26 +01:00
|
|
|
version = "2.0.15";
|
2015-03-07 12:49:59 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz";
|
2019-01-27 07:25:26 +01:00
|
|
|
sha256 = "0cyd48dipc0m399qy8s03lci8b0bpiy8xlkvrm2ia7wcv0dfpv59";
|
2015-03-07 12:49:59 +01:00
|
|
|
};
|
|
|
|
|
2018-06-07 01:18:00 +02:00
|
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-sdltest";
|
|
|
|
|
2018-02-24 13:06:44 +01:00
|
|
|
buildInputs = [ SDL2 freetype libGL ]
|
2018-01-20 22:57:44 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin darwin.libobjc;
|
2015-03-07 12:49:59 +01:00
|
|
|
|
2016-08-22 05:24:32 +02:00
|
|
|
meta = with stdenv.lib; {
|
2015-03-07 12:49:59 +01:00
|
|
|
description = "SDL TrueType library";
|
2018-01-20 16:26:21 +01:00
|
|
|
platforms = platforms.unix;
|
2016-08-22 05:24:32 +02:00
|
|
|
license = licenses.zlib;
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://www.libsdl.org/projects/SDL_ttf/;
|
2015-03-07 12:49:59 +01:00
|
|
|
};
|
|
|
|
}
|