summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2022-01-13 07:34:36 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2022-01-13 07:34:36 +0700
commit7ecf64a13a39c309f79db5b24e5ab6458f10a368 (patch)
treef097caa32cce72017f694d647395453e470085ea
parentb2737d4980a17cc2b7d600d7d0b32fd7333aca88 (diff)
downloadnixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.tar
nixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.tar.gz
nixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.tar.bz2
nixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.tar.lz
nixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.tar.xz
nixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.tar.zst
nixpkgs-7ecf64a13a39c309f79db5b24e5ab6458f10a368.zip
SDL2_ttf: 2.0.15 -> 2.0.18
-rw-r--r--pkgs/development/libraries/SDL2_ttf/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/SDL2_ttf/default.nix b/pkgs/development/libraries/SDL2_ttf/default.nix
index a5057c0fbec..6975dfff24a 100644
--- a/pkgs/development/libraries/SDL2_ttf/default.nix
+++ b/pkgs/development/libraries/SDL2_ttf/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "SDL2_ttf";
-  version = "2.0.15";
+  version = "2.0.18";
 
   src = fetchurl {
     url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz";
-    sha256 = "0cyd48dipc0m399qy8s03lci8b0bpiy8xlkvrm2ia7wcv0dfpv59";
+    sha256 = "sha256-cjTriINRTgGed0fHA+SndFdbGNQ1wipKKdBoy3aKIlE=";
   };
 
   configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
@@ -17,9 +17,9 @@ stdenv.mkDerivation rec {
     ++ lib.optional stdenv.isDarwin darwin.libobjc;
 
   meta = with lib; {
-    description = "SDL TrueType library";
+    description = "Support for TrueType (.ttf) font files with Simple Directmedia Layer";
     platforms = platforms.unix;
     license = licenses.zlib;
-    homepage = "https://www.libsdl.org/projects/SDL_ttf/";
+    homepage = "https://github.com/libsdl-org/SDL_ttf";
   };
 }