mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
f5fa5fa4d6
* 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
21 lines
545 B
Nix
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/;
|
|
};
|
|
}
|