textpieces: mark broken

This commit is contained in:
Benedikt Broich
2023-06-25 21:43:36 +02:00
parent 74d8cf6138
commit 4ba8610783
+10 -7
View File
@@ -10,6 +10,7 @@
, gtk4
, libgee
, libadwaita
, libportal-gtk4
, json-glib
, blueprint-compiler
, gtksourceview5
@@ -20,17 +21,17 @@
}:
let
pythonEnv = python3.withPackages ( ps: with ps; [ pyyaml ] );
pythonEnv = python3.withPackages (ps: with ps; [ pyyaml ]);
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "textpieces";
version = "3.4.0";
version = "3.4.1";
src = fetchFromGitHub {
owner = "liferooter";
repo = pname;
rev = "v${version}";
hash = "sha256-LQq6pjue72a4kIHhWtoxJi/eKxPa4du5sBQY97SG1gY=";
repo = "textpieces";
rev = "v${finalAttrs.version}";
hash = "sha256-3ZUHzt3oXYgsnJVDf83JUDhcF+0DLgFfOMtpKI/FTcE=";
};
nativeBuildInputs = [
@@ -49,6 +50,7 @@ stdenv.mkDerivation rec {
glib
gtk4
libadwaita
libportal-gtk4
libgee
json-glib
gtksourceview5
@@ -72,5 +74,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ zendo ];
broken = true; # https://github.com/liferooter/textpieces/issues/130
};
}
})