summary refs log tree commit diff
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-05-10 11:09:10 +0100
committerajs124 <git@ajs124.de>2022-05-25 01:22:31 +0200
commit3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b (patch)
tree38251e7ca9337044bf289cbbdd5ee01df3a90696
parent824ad4fe309cfdadcb8614c0cfb2f1784325f615 (diff)
downloadnixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.tar
nixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.tar.gz
nixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.tar.bz2
nixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.tar.lz
nixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.tar.xz
nixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.tar.zst
nixpkgs-3cf64d717af61c66d5a05b56a85dcb3f0c87dd8b.zip
holdingnuts: remove
-rw-r--r--pkgs/games/holdingnuts/default.nix38
-rw-r--r--pkgs/top-level/aliases.nix1
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 1 insertions, 40 deletions
diff --git a/pkgs/games/holdingnuts/default.nix b/pkgs/games/holdingnuts/default.nix
deleted file mode 100644
index 2bda1820928..00000000000
--- a/pkgs/games/holdingnuts/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib, stdenv, fetchurl, cmake, SDL, qt4 }:
-
-let mirror = "http://download.holdingnuts.net";
-in stdenv.mkDerivation rec {
-  pname   = "holdingnuts";
-  version = "0.0.5";
-
-  src = fetchurl {
-    url    = "${mirror}/release/${version}/${pname}-${version}.tar.bz2";
-    sha256 = "0iw25jmnqzscg34v66d4zz70lvgjp4l7gi16nna6491xnqha5a8g";
-  };
-
-  patches = [
-    (fetchurl {
-      url    = "${mirror}/patches/holdingnuts-0.0.5-wheel.patch";
-      sha256 = "0hap5anxgc19s5qi64mjpi3wpgphy4dqdxqw34q19dw3gwxw5g8n";
-    })
-    (fetchurl {
-      url    = "${mirror}/patches/holdingnuts-qpixmapcache-workaround.patch";
-      sha256 = "15cf9j9mdm85f0h7w5f5852ic7xpim0243yywkd2qrfp37mi93pd";
-    })
-  ];
-
-  postPatch = ''
-    substituteInPlace src/system/SysAccess.c --replace /usr/share $out/share
-  '';
-
-  nativeBuildInputs = [ cmake ];
-  buildInputs = [ SDL qt4 ];
-
-  meta = with lib; {
-    homepage    = "http://www.holdingnuts.net/";
-    description = "Open Source Poker client and server";
-    license     = licenses.gpl3;
-    maintainers = with maintainers; [ obadz ];
-    platforms   = platforms.all;
-  };
-}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 8d5f06f4fbb..ab609ed2823 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -559,6 +559,7 @@ mapAliases ({
   heme = throw "heme has been removed: upstream is gone"; # added 2022-02-06
   hepmc = hepmc2; # Added 2019-08-05
   hicolor_icon_theme = throw "'hicolor_icon_theme' has been renamed to/replaced by 'hicolor-icon-theme'"; # Converted to throw 2022-02-22
+  holdingnuts = throw "holdingnuts was removed from nixpkgs, as the project is no longer developed"; # Added 2022-05-10
   holochain-go = throw "holochain-go was abandoned by upstream"; # Added 2022-01-01
   htmlTidy = throw "'htmlTidy' has been renamed to/replaced by 'html-tidy'"; # Converted to throw 2022-02-22
   ht-rust = xh; # Added 2021-02-13
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b30eeac305d..47c33249108 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -31784,8 +31784,6 @@ with pkgs;
     inherit (haskellPackages) ghcWithPackages;
   };
 
-  holdingnuts = callPackage ../games/holdingnuts { };
-
   hyperrogue = callPackage ../games/hyperrogue { };
 
   icbm3d = callPackage ../games/icbm3d { };