mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add perl-anyevent-i3.
* gnu/packages/wm.scm (perl-anyevent-i3): New variable.
This commit is contained in:
parent
0a030a9c67
commit
3e7cb70a2a
1 changed files with 27 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
||||||
;;; Copyright © 2016 doncatnip <gnopap@gmail.com>
|
;;; Copyright © 2016 doncatnip <gnopap@gmail.com>
|
||||||
;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan@selidor.net>
|
;;; Copyright © 2016 Ivan Vilata i Balaguer <ivan@selidor.net>
|
||||||
;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
|
;;; Copyright © 2017 Mekeor Melire <mekeor.melire@gmail.com>
|
||||||
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -37,6 +38,7 @@ (define-module (gnu packages wm)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system haskell)
|
#:use-module (guix build-system haskell)
|
||||||
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (gnu packages haskell)
|
#:use-module (gnu packages haskell)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
|
@ -232,6 +234,31 @@ (define-public i3-wm
|
||||||
developers.")
|
developers.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public perl-anyevent-i3
|
||||||
|
(package
|
||||||
|
(name "perl-anyevent-i3")
|
||||||
|
(version "0.16")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://cpan/authors/id/M/MS/MSTPLBG/"
|
||||||
|
"AnyEvent-I3-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1qwva5vmmn929l6k9wzhp4h80ad4qm4m1g2dyv4nlas624003hig"))))
|
||||||
|
(build-system perl-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("perl-anyevent" ,perl-anyevent)
|
||||||
|
("perl-json-xs" ,perl-json-xs)))
|
||||||
|
(home-page "http://search.cpan.org/dist/AnyEvent-I3")
|
||||||
|
(synopsis
|
||||||
|
"Communicate with the i3 window manager through perl")
|
||||||
|
(description
|
||||||
|
"This module connects to the i3 window manager using the UNIX socket
|
||||||
|
based IPC interface it provides (if enabled in the configuration file).
|
||||||
|
You can then subscribe to events or send messages and receive their replies.")
|
||||||
|
;; Can be used with either license.
|
||||||
|
(license (list license:gpl3+ (package-license perl)))))
|
||||||
|
|
||||||
(define-public python-i3-py
|
(define-public python-i3-py
|
||||||
(package
|
(package
|
||||||
(name "python-i3-py")
|
(name "python-i3-py")
|
||||||
|
|
Loading…
Reference in a new issue