about summary refs log tree commit diff
path: root/pkgs/games/libremines/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/libremines/default.nix')
-rw-r--r--pkgs/games/libremines/default.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/pkgs/games/libremines/default.nix b/pkgs/games/libremines/default.nix
deleted file mode 100644
index f1a79e54bd62..000000000000
--- a/pkgs/games/libremines/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, cmake
-, wrapQtAppsHook
-, qtmultimedia
-, qtwayland
-}:
-
-stdenv.mkDerivation rec {
-  pname = "libremines";
-  version = "2.0.1";
-
-  src = fetchFromGitHub {
-    owner = "Bollos00";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-TQwjEgtqAvKnrpia6VloRgFwtq5TNDmxU+ZWjtEK/n8=";
-  };
-
-  nativeBuildInputs = [ cmake wrapQtAppsHook ];
-
-  buildInputs = [
-    qtmultimedia
-  ] ++ lib.optionals stdenv.isLinux [
-    qtwayland
-  ];
-
-  cmakeFlags = [ "-DUSE_QT6=TRUE" ];
-
-  meta = with lib; {
-    description = "Qt based Minesweeper game";
-    mainProgram = "libremines";
-    longDescription = ''
-      A Free/Libre and Open Source Software Qt based Minesweeper game available for GNU/Linux, FreeBSD and Windows systems.
-    '';
-    homepage = "https://bollos00.github.io/LibreMines";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ aleksana ];
-    platforms = platforms.unix;
-  };
-}