mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: Add libomemo-c.
* gnu/packages/messaging.scm (libomemo-c): New variable. Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
e7ab75efee
commit
9e638cb244
1 changed files with 25 additions and 0 deletions
|
|
@ -586,6 +586,31 @@ messaging environments. It can be used with messaging software to provide
|
|||
end-to-end encryption.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public libomemo-c
|
||||
(package
|
||||
(inherit libsignal-protocol-c)
|
||||
(name "libomemo-c")
|
||||
(version "0.5.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/dino/libomemo-c")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1xszd4cjrlwwsy19ri2ymqr676qpqqhxv3cw5zwch3lms68p51hy"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
;; Delete generated sources.
|
||||
#~(for-each delete-file
|
||||
(find-files "." "\\.pb-c\\.[ch]$")))))
|
||||
(build-system meson-build-system)
|
||||
(arguments (list #:configure-flags #~(list "-Dtests=true")))
|
||||
(propagated-inputs (list protobuf-c))
|
||||
(home-page "https://github.com/dino/libomemo-c")
|
||||
(description "This package provides a fork of libsignal-protocol-c, used
|
||||
by Dino to provide OMEMO support.")))
|
||||
|
||||
(define-public axc
|
||||
(package
|
||||
(name "axc")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue