lol

SDL2_ttf_2_0_15: init

This is an older version of the SDL2_ttf derivation needed for
`linthesia` to run properly. I don't know why a minor version change
broke things (2.0.15 -> 2.0.18) but it did and this fixes that without
disrupting other packages.

ckie 1c583d89 21e7625d

+27
+25
pkgs/development/libraries/SDL2_ttf/2.0.15.nix
··· 1 + { lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, libGL }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "SDL2_ttf"; 5 + version = "2.0.15"; 6 + 7 + src = fetchurl { 8 + url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz"; 9 + sha256 = "0cyd48dipc0m399qy8s03lci8b0bpiy8xlkvrm2ia7wcv0dfpv59"; 10 + }; 11 + 12 + configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest"; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + 16 + buildInputs = [ SDL2 freetype libGL ] 17 + ++ lib.optional stdenv.isDarwin darwin.libobjc; 18 + 19 + meta = with lib; { 20 + description = "SDL TrueType library"; 21 + platforms = platforms.unix; 22 + license = licenses.zlib; 23 + homepage = "https://www.libsdl.org/projects/SDL_ttf/"; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 19966 19966 19967 19967 SDL2_ttf = callPackage ../development/libraries/SDL2_ttf { }; 19968 19968 19969 + SDL2_ttf_2_0_15 = callPackage ../development/libraries/SDL2_ttf/2.0.15.nix { }; 19970 + 19969 19971 sdnotify-wrapper = skawarePackages.sdnotify-wrapper; 19970 19972 19971 19973 sdrplay = callPackage ../applications/radio/sdrplay {};