about summary refs log tree commit diff
path: root/pkgs/by-name/em
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2024-02-28 18:39:28 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2024-02-28 18:39:28 -0300
commitcff27f18aa1ac1d695ccc735bc09445956d2df82 (patch)
tree5be2e73eed99af17a95d729349106ffbf4b2e872 /pkgs/by-name/em
parentbfca69f9d4ea4f901066938635efa343531ca180 (diff)
emacspeak: 58.0 -> 59.0
Also, updates broken version according to the changelog.

Co-authored-by: R. RyanTM <ryantm-bot@ryantm.com>
Diffstat (limited to 'pkgs/by-name/em')
-rw-r--r--pkgs/by-name/em/emacspeak/package.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/by-name/em/emacspeak/package.nix b/pkgs/by-name/em/emacspeak/package.nix
index 11631f30123fd..6c18af7807ea9 100644
--- a/pkgs/by-name/em/emacspeak/package.nix
+++ b/pkgs/by-name/em/emacspeak/package.nix
@@ -10,13 +10,13 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "emacspeak";
-  version = "58.0";
+  version = "59.0";
 
   src = fetchFromGitHub {
     owner = "tvraman";
     repo = "emacspeak";
     rev = finalAttrs.version;
-    hash = "sha256-5pWC17nvy3ZuG0bR//LqDVpKsH5hFSFf63Q33a1BfBk=";
+    hash = "sha256-npS/wlqI7nBde/2S/rzp79jdfYXIIhgsVs5VizxEDAQ=";
   };
 
   nativeBuildInputs = [
@@ -62,6 +62,6 @@ stdenv.mkDerivation (finalAttrs: {
     maintainers = with lib.maintainers; [ AndersonTorres ];
     platforms = lib.platforms.linux;
     # Emacspeak requires a minimal Emacs version; let's use the broken flag
-    broken = lib.versionOlder (lib.getVersion emacs) "28.2";
+    broken = lib.versionOlder (lib.getVersion emacs) "29.1";
   };
 })