aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/uml.scm
blob: b3b45059385b2bc790d8e3a000c83cdf33d274b3 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
;;; 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.
;;;
;;; 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")
    (version "1.2020.1")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://sourceforge/plantuml/"
                                  version "/plantuml-" version ".tar.gz"))
              (sha256
               (base32
                "1mywv4m6v1y2wpfz9vqriw6cdq1d2md5k2vf244ldbd9s6j45467"))))
    (build-system ant-build-system)
    (arguments
     `(#:tests? #f                      ; no tests
       #: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\"") "<!--")
               (("ditaa0_9.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 "https://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+)))
itle='2020-02-27 11:31:19 +0100'>2020-02-27gnu: gnome-shell-extension-noannoyance: Use the copy-build-system....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-noannoyance): Use the copy-build-system. Leo Prikler 2020-02-27gnu: gnome-shell-extension-appindicator: Use the copy-build-system....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): Use the copy-build-system. Leo Prikler 2020-02-27gnu: Add gnome-shell-extension-gsconnect....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-gsconnect): New variable. Alex Griffin 2020-02-21gnu: gnome-shell-extension-paperwm: Install compiled gschemas....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm)[arguments]: Install compiled gschemas. Signed-off-by: Alex Griffin <a@ajgrf.com> Jack Hill 2020-02-21gnu: gnome-shell-extension-paperwm: Recompile schemas....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm) [source]: Remove gschemas.compiled in a snippet. [arguments]: Add compile-schemas phase. [native-inputs]: Add glib. Signed-off-by: Alex Griffin <a@ajgrf.com> Jack Hill 2020-02-21gnu: Add gnome-shell-extension-paperwm....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-paperwm): New variable. Alex Griffin 2020-02-05gnu: Add gnome-shell-extension-appindicator....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi 2019-12-25Revert "gnu: gnome-shell-extension-dash-to-dock: Update to 67."...This reverts commit 5a30234c210dfb37da832125cdbda6a9a0c585ca, which assumes you're running Gnome 3.34, which is unlikely. Tobias Geerinckx-Rice 2019-12-23gnu: gnome-shell-extension-dash-to-dock: Update to 67....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-dock): Update to 67. Tobias Geerinckx-Rice 2019-12-23gnu: gnome-shell-extension-dash-to-dock: Depropagate glib:bin....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-dock): [propagated-inputs]: Move glib:bin from here... [native-inputs]: ... to here. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Leo Prikler 2019-12-23gnu: gnome-shell-extension-hide-app-icon: Fix installation....* gnu/packages/gnome-xyz.scm: (gnome-shell-extension-hide-app-icon): [arguments]: Install in subdirectory. Adjust indentation. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Leo Prikler 2019-12-20gnu: Add gnome-shell-extension-hide-app-icon....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-hide-app-icon): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Leo Prikler 2019-12-19gnu: Add gnome-shell-extension-dash-to-panel....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-panel): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi 2019-12-15gnu: Add papirus-icon-theme....* gnu/packages/gnome-xyz.scm (papirus-icon-theme): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Giacomo Leidi 2019-12-11gnu: gnome-shell-extension-dash-to-dock: Update to 66....* gnu/packages/gnome-xyz.scm (gnome-shell-extension-dash-to-dock): Update to 66. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Leo Prikler 2019-12-09gnu: delft-icon-theme: Fix broken icons....* gnu/packages/gnome-xyz (delft-icon-theme): Inherit from Adwaita instead of using the (non-existing) GNOME theme. Signed-off-by: Brett Gilio <brettg@posteo.net> Leo Prikler 2019-11-10gnu: Move numix-theme to gnome-xyz.scm....* gnu/packages/gnome.scm (numix-theme): Move from here ... * gnu/packages/gnome-xyz.scm (numix-theme): ... to here. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Giacomo Leidi 2019-11-09gnu: Add matcha-theme....* gnu/packages/gnome-xyz.scm (matcha-theme): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Alexandros Theodotou 2019-11-08gnu: Add gnome-shell-extension-noannoyance....* gnu/packages/gnome-xyz: (gnome-shell-extension-noannoyance): New variable. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com> Leo Prikler 2019-11-08gnu: Add gnome-shell-extension-dash-to-dock....* gnu/packages/gnome-xyz.scm: (gnome-shell-extension-dash-to-dock): New variable. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com> Leo Prikler 2019-11-08gnu: Add delft-icon-theme....* /gnu/packages/gnome-xyz.scm: New file. (delft-icon-theme): New variable. * /gnu/local.mk: Add it. Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com> Leo Prikler