nixpkgs/pkgs/development/libraries/SDL2_ttf/default.nix

21 lines
545 B
Nix
Raw Normal View History

{ stdenv, fetchurl, SDL2, freetype, mesa_noglu }:
2015-03-07 11:49:59 +00:00
stdenv.mkDerivation rec {
name = "SDL2_ttf-${version}";
version = "2.0.14";
2015-03-07 11:49:59 +00:00
src = fetchurl {
url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz";
2016-05-09 23:24:32 +00:00
sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl";
2015-03-07 11:49:59 +00:00
};
buildInputs = [ SDL2 freetype mesa_noglu ];
2015-03-07 11:49:59 +00:00
meta = with stdenv.lib; {
2015-03-07 11:49:59 +00:00
description = "SDL TrueType library";
platforms = platforms.linux;
license = licenses.zlib;
homepage = https://www.libsdl.org/projects/SDL_ttf/;
2015-03-07 11:49:59 +00:00
};
}