2016-11-08 14:59:04 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2017-09-29 12:36:20 +02:00
|
|
|
;;; Copyright © 2016 Theodoros Foradis <theodoros@foradis.org>
|
2019-02-09 09:10:12 +01:00
|
|
|
;;; Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net>
|
2019-03-05 23:57:11 +01:00
|
|
|
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2016-11-08 14:59:04 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages uml)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module (guix build-system ant)
|
|
|
|
#:use-module (gnu packages graphviz)
|
|
|
|
#:use-module (gnu packages java))
|
|
|
|
|
|
|
|
(define-public plantuml
|
|
|
|
(package
|
|
|
|
(name "plantuml")
|
2019-03-21 02:24:51 +01:00
|
|
|
(version "1.2019.3")
|
2016-11-08 14:59:04 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2019-02-09 09:10:12 +01:00
|
|
|
(uri (string-append "mirror://sourceforge/plantuml/"
|
|
|
|
version "/plantuml-" version ".tar.gz"))
|
2016-11-08 14:59:04 +01:00
|
|
|
(sha256
|
|
|
|
(base32
|
2019-03-21 02:24:51 +01:00
|
|
|
"0p2mqav0qfc6kmkhb2n1vjysffnvpsx4yal68nl0yrh5vd3bnmza"))))
|
2016-11-08 14:59:04 +01:00
|
|
|
(build-system ant-build-system)
|
|
|
|
(arguments
|
2019-03-05 23:57:11 +01:00
|
|
|
`(#:tests? #f ; no tests
|
2016-11-08 14:59:04 +01:00
|
|
|
#:build-target "dist"
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'build 'delete-extra-from-classpath
|
|
|
|
(lambda _
|
|
|
|
(substitute* "build.xml"
|
|
|
|
(("1.6") "1.7")
|
|
|
|
(("<attribute name=\"Class-Path\"") "<!--")
|
|
|
|
(("j2v8_macosx_x86_64-3.1.7.jar\" />") "-->"))
|
|
|
|
#t))
|
|
|
|
(add-after 'delete-extra-from-classpath 'patch-usr-bin-dot
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let ((dot (string-append (assoc-ref inputs "graphviz")
|
|
|
|
"/bin/dot")))
|
|
|
|
(substitute*
|
|
|
|
"src/net/sourceforge/plantuml/cucadiagram/dot/GraphvizLinux.java"
|
|
|
|
(("/usr/bin/dot") dot)))
|
|
|
|
#t))
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(install-file "plantuml.jar" (string-append
|
|
|
|
(assoc-ref outputs "out")
|
|
|
|
"/share/java"))
|
|
|
|
#t))
|
|
|
|
(add-after 'install 'make-wrapper
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(wrapper (string-append out "/bin/plantuml")))
|
|
|
|
(mkdir-p (string-append out "/bin"))
|
|
|
|
(with-output-to-file wrapper
|
|
|
|
(lambda _
|
|
|
|
(display
|
|
|
|
(string-append
|
|
|
|
"#!/bin/sh\n\n"
|
|
|
|
(assoc-ref inputs "jre") "/bin/java -jar "
|
|
|
|
out "/share/java/plantuml.jar \"$@\"\n"))))
|
|
|
|
(chmod wrapper #o555))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("graphviz" ,graphviz)
|
|
|
|
("jre" ,icedtea)))
|
|
|
|
(home-page "http://plantuml.com/")
|
|
|
|
(synopsis "Draw UML diagrams from simple textual description")
|
|
|
|
(description
|
|
|
|
"Plantuml is a tool to generate sequence, usecase, class, activity,
|
|
|
|
component, state, deployment and object UML diagrams, using a simple and
|
|
|
|
human readable text description. Contains @code{salt}, a tool that can design
|
|
|
|
simple graphical interfaces.")
|
|
|
|
(license license:gpl3+)))
|