mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add libpsyc.
* gnu/packages/psyc.scm (libpsyc): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3a14b2bcf6
commit
5cb7974109
1 changed files with 39 additions and 0 deletions
|
@ -21,7 +21,10 @@ (define-module (gnu packages psyc)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages admin)
|
||||||
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages web))
|
#:use-module (gnu packages web))
|
||||||
|
@ -104,3 +107,39 @@ (define-public perl-net-psyc
|
||||||
license:public-domain
|
license:public-domain
|
||||||
;; bin/psycplay states AGPL with no version:
|
;; bin/psycplay states AGPL with no version:
|
||||||
license:agpl3+))))
|
license:agpl3+))))
|
||||||
|
|
||||||
|
(define-public libpsyc
|
||||||
|
(package
|
||||||
|
(name "libpsyc")
|
||||||
|
(version "20160913")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://www.psyced.org/files/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14q89fxap05ajkfn20rnhc6b1h4i3i2adyr7y6hs5zqwb2lcmc1p"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("perl" ,perl)
|
||||||
|
("netcat" ,netcat)
|
||||||
|
("procps" ,procps)))
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags
|
||||||
|
(list "CC=gcc"
|
||||||
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; The rust bindings are the only ones in use, the lpc bindings
|
||||||
|
;; are in psyclpc. The other bindings are not used by anything,
|
||||||
|
;; the chances are high that the bindings do not even work,
|
||||||
|
;; therefore we do not include them.
|
||||||
|
;; TODO: Get a cargo build system in Guix.
|
||||||
|
(delete 'configure)))) ; no configure script
|
||||||
|
(home-page "http://about.psyc.eu/libpsyc")
|
||||||
|
(description
|
||||||
|
"@code{libpsyc} is a PSYC library in C which implements
|
||||||
|
core aspects of PSYC, useful for all kinds of clients and servers
|
||||||
|
including psyced.")
|
||||||
|
(synopsis "PSYC library in C")
|
||||||
|
(license license:agpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue