diff options
author | José Miguel Sánchez García <jmi2k@openmailbox.org> | 2017-04-17 19:08:34 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-04-17 16:03:35 -0400 |
commit | 7eaa8cf2b9d1458b90969f2c01b40f3851e07ef6 (patch) | |
tree | c4753b4ccfb3be4ef2b29fa47de96a30418415dd | |
parent | 3a0cfe675f7e18e3fb2c83657b5129e2c03a3f17 (diff) | |
download | patches-7eaa8cf2b9d1458b90969f2c01b40f3851e07ef6.tar patches-7eaa8cf2b9d1458b90969f2c01b40f3851e07ef6.tar.gz |
gnu: vis: Update to 0.3.
* gnu/packages/text-editors.scm (vis): Update to 0.3.
[arguments]: Remove #:make-flags.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/text-editors.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 9da627b65b..920868b52d 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -42,18 +42,17 @@ (define-public vis (package (name "vis") - (version "0.2") + (version "0.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/martanne/" name "/archive/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "0bbmkblpndc53pvr8xcfywdn8g351yxfj8c46zp5d744c3bq2nry")))) + (base32 "0xvhkj4j8pcmpnsx7f93d6n2f068xnl7wacfs97vr0agxwrfvn5y")))) (build-system gnu-build-system) (arguments - `(#:make-flags '("CFLAGS=-pie") - #:tests? #f ; No tests. + `(#:tests? #f ; No tests. #:phases (modify-phases %standard-phases (add-after 'install 'wrap-binary |