summaryrefslogtreecommitdiff
path: root/pkgs/games
diff options
context:
space:
mode:
authorpancaek <20342389+pancaek@users.noreply.github.com>2026-01-03 12:19:23 -0800
committerpancaek <20342389+pancaek@users.noreply.github.com>2026-01-03 12:47:40 -0800
commitc23e6c3d969e926476016f5eceef0c0690607b67 (patch)
tree5a1b11bb0b694df06400b9f96b51c74ebbbe17cc /pkgs/games
parentfltrator: move to by-name/ (diff)
downloadnixpkgs-c23e6c3d969e926476016f5eceef0c0690607b67.tar.gz
gscrabble: drop
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gscrabble/default.nix64
1 files changed, 0 insertions, 64 deletions
diff --git a/pkgs/games/gscrabble/default.nix b/pkgs/games/gscrabble/default.nix
deleted file mode 100644
index fe4a5a0b8dd4..000000000000
--- a/pkgs/games/gscrabble/default.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{
- lib,
- buildPythonApplication,
- fetchFromGitHub,
- gtk3,
- wrapGAppsHook3,
- gst_all_1,
- gobject-introspection,
- gst-python,
- pygobject3,
- adwaita-icon-theme,
-}:
-
-buildPythonApplication {
- pname = "gscrabble";
- version = "unstable-2020-04-21";
- format = "setuptools";
-
- src = fetchFromGitHub {
- owner = "RaaH";
- repo = "gscrabble";
- rev = "aba37f062a6b183dcc084c453f395af1dc437ec8";
- sha256 = "sha256-rYpPHgOlPRnlA+Nkvo/J+/8/vl24/Ssk55fTq9oNCz4=";
- };
-
- doCheck = false;
-
- nativeBuildInputs = [
- wrapGAppsHook3
- gobject-introspection
- ];
-
- buildInputs = with gst_all_1; [
- gst-plugins-base
- gst-plugins-good
- gst-plugins-ugly
- gst-plugins-bad
- adwaita-icon-theme
- gtk3
- ];
-
- propagatedBuildInputs = [
- gst-python
- pygobject3
- ];
-
- preFixup = ''
- gappsWrapperArgs+=(
- --prefix PYTHONPATH : "$out/share/GScrabble/modules"
- )
- '';
-
- meta = {
- # Fails to build, probably incompatible with latest Python
- # error: Multiple top-level packages discovered in a flat-layout
- # https://github.com/RaaH/gscrabble/issues/13
- broken = true;
- description = "Golden Scrabble crossword puzzle game";
- homepage = "https://github.com/RaaH/gscrabble/";
- license = lib.licenses.gpl2Plus;
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ onny ];
- };
-}