about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2023-06-22 08:07:32 -0400
committerAndrew Marshall <andrew@johnandrewmarshall.com>2023-07-11 18:15:12 -0400
commitc05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee (patch)
tree98b7a0f84bbfb4f5bae04bc98c1ccd4ccbd3a26b /pkgs/development/libraries
parent4340a53bf39332ef13fd133b22077959900d3d45 (diff)
downloadnixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.tar
nixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.tar.gz
nixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.tar.bz2
nixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.tar.lz
nixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.tar.xz
nixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.tar.zst
nixlib-c05e2c1cbd9a5ab8d1477b1fd0a2480d6fe147ee.zip
SDL2_ttf_2_0_15: remove as it is unused
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/SDL2_ttf/2.0.15.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/development/libraries/SDL2_ttf/2.0.15.nix b/pkgs/development/libraries/SDL2_ttf/2.0.15.nix
deleted file mode 100644
index a5057c0fbec8..000000000000
--- a/pkgs/development/libraries/SDL2_ttf/2.0.15.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, stdenv, pkg-config, darwin, fetchurl, SDL2, freetype, libGL }:
-
-stdenv.mkDerivation rec {
-  pname = "SDL2_ttf";
-  version = "2.0.15";
-
-  src = fetchurl {
-    url = "https://www.libsdl.org/projects/SDL_ttf/release/${pname}-${version}.tar.gz";
-    sha256 = "0cyd48dipc0m399qy8s03lci8b0bpiy8xlkvrm2ia7wcv0dfpv59";
-  };
-
-  configureFlags = lib.optional stdenv.isDarwin "--disable-sdltest";
-
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [ SDL2 freetype libGL ]
-    ++ lib.optional stdenv.isDarwin darwin.libobjc;
-
-  meta = with lib; {
-    description = "SDL TrueType library";
-    platforms = platforms.unix;
-    license = licenses.zlib;
-    homepage = "https://www.libsdl.org/projects/SDL_ttf/";
-  };
-}