[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: tig: Update to 2.1.1.
From: |
Efraim Flashner |
Subject: |
03/03: gnu: tig: Update to 2.1.1. |
Date: |
Sat, 21 Nov 2015 21:04:21 +0000 |
efraim pushed a commit to branch master
in repository guix.
commit 92d9a36e9721a89fea71fe88d74234679789659f
Author: Efraim Flashner <address@hidden>
Date: Sat Nov 21 22:31:00 2015 +0200
gnu: tig: Update to 2.1.1.
* gnu/packages/version-control.scm (tig): Update to 2.1.1.
---
gnu/packages/version-control.scm | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 70c4442..b132663 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -903,7 +903,7 @@ any project with more than one developer, is one of Aegis's
major functions.")
(define-public tig
(package
(name "tig")
- (version "2.1")
+ (version "2.1.1")
(source (origin
(method url-fetch)
(uri (string-append
@@ -911,12 +911,13 @@ any project with more than one developer, is one of
Aegis's major functions.")
version ".tar.gz"))
(sha256
(base32
- "1c1w6w39a1dwx4whrg0ga1mhrlz095hz875z7ajn6xgmhkv8fqih"))))
+ "0bw5wivswwh7vx897q8xc2cqgkqhdzk8gh6fnav2kf34sngigiah"))))
(build-system gnu-build-system)
(inputs
`(("ncurses" ,ncurses)))
(arguments
- `(#:tests? #f)) ; no tests implemented
+ `(#:tests? #f)) ; tests require access to /dev/tty
+ ;;`(#:test-target "test"))
(home-page "http://jonas.nitro.dk/tig/")
(synopsis "Ncurses-based text user interface for Git")
(description