From 58eae5a47e4067acb18a7e52d1896141062d69b2 Mon Sep 17 00:00:00 2001 From: Jason O'Conal Date: Sat, 30 Apr 2022 15:44:03 +0930 Subject: [PATCH] tintin: remove due to lack of maintainers --- pkgs/games/tintin/default.nix | 35 --------------------------------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 1 insertion(+), 36 deletions(-) delete mode 100644 pkgs/games/tintin/default.nix diff --git a/pkgs/games/tintin/default.nix b/pkgs/games/tintin/default.nix deleted file mode 100644 index aac7cf8f6ab..00000000000 --- a/pkgs/games/tintin/default.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ stdenv, fetchurl, lib, zlib, pcre -, memorymappingHook, memstreamHook -, tlsSupport ? true, gnutls ? null -# ^ set { tlsSupport = false; } to reduce closure size by ~= 18.6 MB -}: - -assert tlsSupport -> gnutls != null; - -stdenv.mkDerivation rec { - pname = "tintin"; - version = "2.02.12"; - - src = fetchurl { - url = "mirror://sourceforge/tintin/tintin-${version}.tar.gz"; - sha256 = "sha256-tvn9TywefNyM/0Fy16gAFJYbA5Q4DO2RgiCdw014GgA="; - }; - - nativeBuildInputs = lib.optional tlsSupport gnutls.dev; - buildInputs = [ zlib pcre ] - ++ lib.optionals (stdenv.system == "x86_64-darwin") [ memorymappingHook memstreamHook ] - ++ lib.optional tlsSupport gnutls; - - preConfigure = '' - cd src - ''; - - meta = with lib; { - description = "A free MUD client for macOS, Linux and Windows"; - homepage = "http://tintin.sourceforge.net"; - license = licenses.gpl2; - maintainers = with maintainers; [ lovek323 ]; - mainProgram = "tt++"; - platforms = platforms.unix; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd01fc2dd2d..a6902d5a1cb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32191,7 +32191,7 @@ with pkgs; tibia = pkgsi686Linux.callPackage ../games/tibia { }; - tintin = callPackage ../games/tintin { }; + tintin = throw "tintin has been removed due to lack of maintainers"; tinyfugue = callPackage ../games/tinyfugue { };