diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-05 23:57:11 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-06 00:15:27 +0100 |
commit | 84bdd0ec06a87bcc63fbfa597bc8b386b79058d8 (patch) | |
tree | 1fd0d4914f39f4c08203f0dcd5dbd8ca9a14ecd9 /gnu/packages/uml.scm | |
parent | 283080204366e8ebc48942ec89874b7fcc33b6f6 (diff) | |
download | patches-84bdd0ec06a87bcc63fbfa597bc8b386b79058d8.tar patches-84bdd0ec06a87bcc63fbfa597bc8b386b79058d8.tar.gz |
gnu: plantuml: Update to 1.2019.2.
* gnu/packages/uml.scm (plantuml): Update to 1.2019.2.
Diffstat (limited to 'gnu/packages/uml.scm')
-rw-r--r-- | gnu/packages/uml.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/uml.scm b/gnu/packages/uml.scm index b49a85d932..b4c9629769 100644 --- a/gnu/packages/uml.scm +++ b/gnu/packages/uml.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org> ;;; Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -29,17 +30,17 @@ (define-public plantuml (package (name "plantuml") - (version "1.2019.0") + (version "1.2019.2") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/plantuml/" version "/plantuml-" version ".tar.gz")) (sha256 (base32 - "0mws7g0w3fn0wxizccg2iqisq9ljkn95i5qf8ma07lbw3nj0h48n")))) + "0hqj2crf6yg40naiwlnnym4c6r0wbz5vr8729z0daggnyg8vqniz")))) (build-system ant-build-system) (arguments - `(#:tests? #f ; no tests + `(#:tests? #f ; no tests #:build-target "dist" #:phases (modify-phases %standard-phases |