mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add compface.
* gnu/packages/mail.scm (compface): New variable.
This commit is contained in:
parent
84b60a7cdf
commit
ee6e780b2c
1 changed files with 22 additions and 1 deletions
|
@ -90,7 +90,7 @@ (define-module (gnu packages mail)
|
||||||
#:select (gpl2 gpl2+ gpl3 gpl3+ lgpl2.1 lgpl2.1+ lgpl3+
|
#:select (gpl2 gpl2+ gpl3 gpl3+ lgpl2.1 lgpl2.1+ lgpl3+
|
||||||
non-copyleft (expat . license:expat) bsd-3
|
non-copyleft (expat . license:expat) bsd-3
|
||||||
public-domain bsd-4 isc (openssl . license:openssl)
|
public-domain bsd-4 isc (openssl . license:openssl)
|
||||||
bsd-2))
|
bsd-2 x11-style))
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
@ -733,6 +733,27 @@ (define-public libetpan
|
||||||
MailCore 2.")
|
MailCore 2.")
|
||||||
(license (non-copyleft "file://COPYING"))))
|
(license (non-copyleft "file://COPYING"))))
|
||||||
|
|
||||||
|
(define-public compface
|
||||||
|
(package
|
||||||
|
(name "compface")
|
||||||
|
(version "1.5.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://ftp.heanet.ie/mirrors/"
|
||||||
|
"ftp.xemacs.org/aux/"
|
||||||
|
name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09b89wg63hg502hsz592cd2h87wdprb1dq1k1y07n89hym2q56d6"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f))
|
||||||
|
(synopsis "Portrait image compressor")
|
||||||
|
(description "This packages takes your 48x48x1 portrait image and
|
||||||
|
compresses it.")
|
||||||
|
(home-page "http://www.cs.indiana.edu/pub/faces/")
|
||||||
|
(license (x11-style "file://README"))))
|
||||||
|
|
||||||
(define-public claws-mail
|
(define-public claws-mail
|
||||||
(package
|
(package
|
||||||
(name "claws-mail")
|
(name "claws-mail")
|
||||||
|
|
Loading…
Reference in a new issue