mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: Add ansilove.
* gnu/packages/image-processing.scm (ansilove): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f9f6f8d25a
commit
5338f5eec0
1 changed files with 25 additions and 0 deletions
|
@ -1763,3 +1763,28 @@ (define-public libansilove
|
|||
including ANSI (.ANS) and many others. The library primarily serves to support
|
||||
the ansilove tool.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ansilove
|
||||
(package
|
||||
(name "ansilove")
|
||||
(version "4.2.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ansilove/ansilove")
|
||||
(commit (string-append version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1h9r759krjl8wi68yxs1d46qfrx6v89a8vmmv3aqym8vn9x430kh"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
(list libansilove))
|
||||
(home-page "https://www.ansilove.org/")
|
||||
(synopsis "ANSI and ASCII art to PNG converter")
|
||||
(description
|
||||
"AnsiLove is an ANSI and ASCII art to PNG converter, allowing to convert
|
||||
ANSI and artscene-related file formats into PNG images, supporting ANSI (.ANS),
|
||||
PCBoard (.PCB), Binary (.BIN), Artworx (.ADF), iCE Draw (.IDF), Tundra (.TND)
|
||||
and XBin (.XB) formats.")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue