mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add libsignon-glib.
* gnu/packages/qt.scm (libsignon-glib): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
df66bede3e
commit
7bc1fe0656
1 changed files with 48 additions and 0 deletions
|
@ -49,6 +49,7 @@ (define-module (gnu packages qt)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#: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 meson)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system qt)
|
#:use-module (guix build-system qt)
|
||||||
|
@ -60,6 +61,7 @@ (define-module (gnu packages qt)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages cups)
|
#:use-module (gnu packages cups)
|
||||||
|
@ -4326,6 +4328,52 @@ (define-public libaccounts-qt
|
||||||
credentials and service-specific settings.")
|
credentials and service-specific settings.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
(define-public libsignon-glib
|
||||||
|
(package
|
||||||
|
(name "libsignon-glib")
|
||||||
|
(version "2.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/accounts-sso/libsignon-glib")
|
||||||
|
(commit (string-append "VERSION_" version))
|
||||||
|
(recursive? #t)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0gnx9gqsh0hcfm1lk7w60g64mkn1iicga5f5xcy1j9a9byacsfd0"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f ;TODO: ninja: no work to do.
|
||||||
|
#:imported-modules `((guix build python-build-system)
|
||||||
|
,@%meson-build-system-modules)
|
||||||
|
#:modules '(((guix build python-build-system)
|
||||||
|
#:select (python-version))
|
||||||
|
(guix build meson-build-system)
|
||||||
|
(guix build utils))
|
||||||
|
#:configure-flags
|
||||||
|
#~(list "-Dtests=true"
|
||||||
|
(string-append "-Dpy-overrides-dir="
|
||||||
|
#$output "/lib/python"
|
||||||
|
(python-version #$(this-package-input
|
||||||
|
"python"))
|
||||||
|
"/site-packages/gi/overrides"))))
|
||||||
|
(native-inputs (list dbus
|
||||||
|
dbus-test-runner
|
||||||
|
`(,glib "bin")
|
||||||
|
gobject-introspection
|
||||||
|
gtk-doc
|
||||||
|
pkg-config
|
||||||
|
vala))
|
||||||
|
(inputs (list check signond python python-pygobject))
|
||||||
|
(propagated-inputs (list glib))
|
||||||
|
(home-page "https://accounts-sso.gitlab.io/libsignon-glib/")
|
||||||
|
(synopsis "Single signon authentication library for GLib applications")
|
||||||
|
(description
|
||||||
|
"This package provides single signon authentication library for
|
||||||
|
GLib applications.")
|
||||||
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public signond
|
(define-public signond
|
||||||
(package
|
(package
|
||||||
(name "signond")
|
(name "signond")
|
||||||
|
|
Loading…
Reference in a new issue