nixpkgs/pkgs/development/libraries/SDL2_ttf/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

21 lines
545 B
Nix

{ stdenv, fetchurl, SDL2, freetype, mesa_noglu }:
stdenv.mkDerivation rec {
name = "SDL2_ttf-${version}";
version = "2.0.14";
src = fetchurl {
url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz";
sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl";
};
buildInputs = [ SDL2 freetype mesa_noglu ];
meta = with stdenv.lib; {
description = "SDL TrueType library";
platforms = platforms.linux;
license = licenses.zlib;
homepage = https://www.libsdl.org/projects/SDL_ttf/;
};
}