about summary refs log tree commit diff
path: root/pkgs/games/lgames/lpairs2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/lgames/lpairs2/default.nix')
-rw-r--r--pkgs/games/lgames/lpairs2/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/games/lgames/lpairs2/default.nix b/pkgs/games/lgames/lpairs2/default.nix
deleted file mode 100644
index 7993fd0657da..000000000000
--- a/pkgs/games/lgames/lpairs2/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-, SDL2
-, SDL2_image
-, SDL2_mixer
-, SDL2_ttf
-, directoryListingUpdater
-}:
-
-stdenv.mkDerivation rec {
-  pname = "lpairs2";
-  version = "2.3";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/lgames/${pname}-${version}.tar.gz";
-    hash = "sha256-gw1BNkcztyTuoXRdx5+TBZNJEJNrLCfEUCQ1JzROogA=";
-  };
-
-  buildInputs = [
-    SDL2
-    SDL2_image
-    SDL2_mixer
-    SDL2_ttf
-  ];
-
-  passthru.updateScript = directoryListingUpdater {
-    inherit pname version;
-    url = "https://lgames.sourceforge.io/LPairs/";
-    extraRegex = "(?!.*-win(32|64)).*";
-  };
-
-  meta = with lib; {
-    broken = stdenv.isDarwin;
-    homepage = "http://lgames.sourceforge.net/LPairs/";
-    description = "Matching the pairs - a typical Memory Game";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ AndersonTorres ];
-    platforms = platforms.unix;
-  };
-}