summaryrefslogtreecommitdiffstats
path: root/pkgs/games
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-07-31 13:02:12 +0200
committerJonas Heinrich <onny@project-insanity.org>2022-07-31 13:10:27 +0200
commit9dd6ec456b934e1cc3452f001d4f4ef32a774a39 (patch)
tree28d1e24ca735d6673e06f52ee4e5158131b43de4 /pkgs/games
parent42100e31bfa5ad169e7bc7356ad83fe9f817e34e (diff)
gscrabble: mark as broken
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gscrabble/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/games/gscrabble/default.nix b/pkgs/games/gscrabble/default.nix
index f0e4121d8f2c..b21cdadac1e0 100644
--- a/pkgs/games/gscrabble/default.nix
+++ b/pkgs/games/gscrabble/default.nix
@@ -4,13 +4,13 @@
buildPythonApplication {
pname = "gscrabble";
- version = "unstable-2019-03-11";
+ version = "unstable-2020-04-21";
src = fetchFromGitHub {
owner = "RaaH";
repo = "gscrabble";
- rev = "4b6e4e151a4cd4a4f66a5be2c8616becac3f2a29";
- sha256 = "0a89kqh04x52q7qyv1rfa7xif0pdw3zc0dw5a24msala919g90q2";
+ rev = "aba37f062a6b183dcc084c453f395af1dc437ec8";
+ sha256 = "sha256-rYpPHgOlPRnlA+Nkvo/J+/8/vl24/Ssk55fTq9oNCz4=";
};
doCheck = false;
@@ -31,10 +31,14 @@ buildPythonApplication {
'';
meta = with lib; {
+ # Fails to build, propably 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 = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = [ ];
+ maintainers = with maintainers; [ onny ];
};
}