mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add cppgir-for-telegram-desktop.
* gnu/packages/glib.scm (cppgir-for-telegram-desktop): New variable. Change-Id: Ib9ca3bd376f32d13939adabd2c52e1eb24e2ddcb Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
fe9d09dca4
commit
7ee28b3a9d
1 changed files with 19 additions and 0 deletions
|
@ -1621,3 +1621,22 @@ (define-public cppgir
|
|||
introspection annotations into a set of C++ files defining suitable
|
||||
namespaces, classes and other types that together form a C++ binding.")
|
||||
(license license:expat)))
|
||||
|
||||
;; telegram-desktop requires a more recent version of cppgir
|
||||
(define-public cppgir-for-telegram-desktop
|
||||
(let ((commit "9c4f5820d94d62ab451501f016bfea97156518f4")
|
||||
(revision "0"))
|
||||
(package
|
||||
(inherit cppgir)
|
||||
(name "cppgir-for-telegram-desktop")
|
||||
(version (git-version "2.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://gitlab.com/mnauw/cppgir")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1fa9nf4yljfarihaqj5kd98yysrky7q316mh6l5b1rq39ga15k9b")))))))
|
||||
|
|
Loading…
Reference in a new issue