Unverified Commit 4ba86107 authored by Benedikt Broich's avatar Benedikt Broich
Browse files

textpieces: mark broken

parent 74d8cf61
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
, gtk4
, libgee
, libadwaita
, libportal-gtk4
, json-glib
, blueprint-compiler
, gtksourceview5
@@ -22,15 +23,15 @@
let
  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
  };
}
})