summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosep Bigorra <jjbigorra@gmail.com>2025-06-25 07:18:48 +0200
committerjgart <jgart@dismail.de>2025-06-26 03:41:22 -0400
commit236490569e759a48278ccbdd4ad5a7884c453545 (patch)
treee434f5bcdbcf0e86a8e27fb61daf1f8b72e5b8b2
parent3125e1b499de0007243e1517b2d28eb7460abe17 (diff)
gnu: ggg: Update to 0.3.11.
* gnu/packages/image.scm (ggg): Update to 0.3.11. [arguments]: Remove unnecessary delete-file directives. [inputs]: Add bash-minimal. Change-Id: Id89a1db7060fe5a1f34c0200d50ca0194eed6289 Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/image.scm14
1 files changed, 4 insertions, 10 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index dac4100119..8b1f46a88c 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -1370,7 +1370,7 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.")
(define-public ggg
(package
(name "ggg")
- (version "0.3.6")
+ (version "0.3.11")
(source
(origin
(method git-fetch)
@@ -1379,16 +1379,10 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0dyqb6p7dyx29nyv1qscin1q5wr0p0kakc4zirvkr1ark0wmslf2"))))
+ (base32 "0pn6xp90nnvfbbdyip7hsbf8is17waxk2xar2gc0h6lmq7j14rfv"))))
(arguments
`(#:source-directory "src"
#:phases (modify-phases %standard-phases
- (add-before 'build 'remove-guix.scm
- (lambda _
- (delete-file "guix.scm")))
- (add-before 'build 'remove-dist
- (lambda _
- (delete-file-recursively "dist")))
(add-before 'build 'install-program-files
(lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out")
@@ -1399,7 +1393,7 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.")
(mkdir-p (string-append share "/resources"))
(install-file "resources/help.txt"
(string-append share
- "/resources/help.txt"))
+ "/resources"))
(copy-recursively "resources/svg-paths"
(string-append share
"/resources/svg-paths"))
@@ -1409,7 +1403,7 @@ graphics image formats like PNG, BMP, JPEG, TIFF and others.")
(chmod (string-append bin "/ggg") #o755)))))))
(build-system guile-build-system)
(native-inputs (list guile-3.0))
- (inputs (list guile-3.0))
+ (inputs (list guile-3.0 bash-minimal))
(synopsis
"GGG is a SVG image generator for project and web badges")
(description