about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-03-02 17:58:04 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-03-02 17:58:04 -0300
commit27fbdc911975979b00a6b6a8440e09215938d121 (patch)
treee189d76674b258fa141dd983406ae5a8897171d9 /pkgs/games
parente9a443861a6542ff4facfdb94326286e7b600296 (diff)
downloadnixlib-27fbdc911975979b00a6b6a8440e09215938d121.tar
nixlib-27fbdc911975979b00a6b6a8440e09215938d121.tar.gz
nixlib-27fbdc911975979b00a6b6a8440e09215938d121.tar.bz2
nixlib-27fbdc911975979b00a6b6a8440e09215938d121.tar.lz
nixlib-27fbdc911975979b00a6b6a8440e09215938d121.tar.xz
nixlib-27fbdc911975979b00a6b6a8440e09215938d121.tar.zst
nixlib-27fbdc911975979b00a6b6a8440e09215938d121.zip
lpairs2: migrate to by-name
Diffstat (limited to 'pkgs/games')
-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;
-  };
-}