[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: ne: Update to 3.3.1.
From: |
guix-commits |
Subject: |
01/03: gnu: ne: Update to 3.3.1. |
Date: |
Sat, 4 Sep 2021 21:43:37 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 45066bc9ff55bfaafaccd8d19afdf2acb5765e96
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 5 03:03:36 2021 +0200
gnu: ne: Update to 3.3.1.
* gnu/packages/text-editors.scm (ne): Update to 3.3.1.
[arguments]: Add a 'patch-early-shebang phase.
Don't return #t from other phases.
---
gnu/packages/text-editors.scm | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 79d2ec4..3f427d0 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1083,7 +1083,7 @@ card. It offers:
(define-public ne
(package
(name "ne")
- (version "3.3.0")
+ (version "3.3.1")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -1092,7 +1092,7 @@ card. It offers:
(file-name (git-file-name name version))
(sha256
(base32
- "01aglnsfljlvx0wvyvpjfn4y88jf450a06qnj9a8lgdqv1hdkq1a"))))
+ "0sg2f6lxq6cjkpd3dvlxxns82hvq826rjnams5in97pssmknr77g"))))
(build-system gnu-build-system)
(native-inputs
`(("perl" ,perl)
@@ -1108,11 +1108,14 @@ card. It offers:
"/lib"))
#:phases
(modify-phases %standard-phases
+ (add-before 'configure 'patch-early-shebang
+ (lambda _
+ (substitute* "version.pl"
+ (("/usr/bin/env .*perl") (which "perl")))))
(replace 'configure
(lambda _
(substitute* "src/makefile"
- (("-lcurses") "-lncurses"))
- #t)))))
+ (("-lcurses") "-lncurses")))))))
(home-page "https://ne.di.unimi.it/")
(synopsis "Text editor with menu bar")
(description "This package provides a modeless text editor with menu bar.