at 16.09-beta 20 lines 547 B view raw
1{ stdenv, fetchurl, SDL2, freetype, mesa_noglu }: 2 3stdenv.mkDerivation rec { 4 name = "SDL2_ttf-${version}"; 5 version = "2.0.14"; 6 7 src = fetchurl { 8 url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz"; 9 sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl"; 10 }; 11 12 buildInputs = [ SDL2 freetype mesa_noglu ]; 13 14 meta = with stdenv.lib; { 15 description = "SDL TrueType library"; 16 platforms = platforms.linux; 17 license = licenses.zlib; 18 homepage = "https://www.libsdl.org/projects/SDL_ttf/"; 19 }; 20}