gnu: lightdm: Update to 1.32.0.
* gnu/packages/display-managers.scm (lightdm): Update to 1.32.0.
This commit is contained in:
parent
e1375a9b64
commit
a8f53d544b
1 changed files with 76 additions and 82 deletions
|
@ -255,22 +255,18 @@ experience for your users, your family and yourself")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public lightdm
|
(define-public lightdm
|
||||||
;; Use the latest commit, as the current official release doesn't build with
|
|
||||||
;; glib >= 2.33.
|
|
||||||
(let ((revision "0")
|
|
||||||
(commit "b7fc3214cbaed09c73e963847443a0d648dfd896"))
|
|
||||||
(package
|
(package
|
||||||
(name "lightdm")
|
(name "lightdm")
|
||||||
(version (git-version "1.30.0" revision commit))
|
(version "1.32.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/canonical/lightdm")
|
(url "https://github.com/canonical/lightdm")
|
||||||
(commit commit)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0378jacazpmdgdjkiilk3mbikz3iysb4s9q40hg9zv4yngwsix1m"))))
|
"1wr60c946p8jz9kb8zi4cd8d4mkcy7infbvlfzwajiglc22nblxn"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:parallel-tests? #f ; fails when run in parallel
|
'(#:parallel-tests? #f ; fails when run in parallel
|
||||||
|
@ -296,12 +292,10 @@ experience for your users, your family and yourself")
|
||||||
(("/bin/sh")
|
(("/bin/sh")
|
||||||
(search-input-file inputs "bin/sh")))))
|
(search-input-file inputs "bin/sh")))))
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
;; Run test-suite under a dbus session.
|
|
||||||
(lambda _
|
(lambda _
|
||||||
(wrap-program "tests/src/test-python-greeter"
|
(wrap-program "tests/src/test-python-greeter"
|
||||||
`("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))
|
`("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))
|
||||||
`("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH"))))
|
`("GI_TYPELIB_PATH" ":" prefix (,(getenv "GI_TYPELIB_PATH"))))
|
||||||
|
|
||||||
;; Avoid printing locale warnings, which trip up the text
|
;; Avoid printing locale warnings, which trip up the text
|
||||||
;; matching tests.
|
;; matching tests.
|
||||||
(unsetenv "LC_ALL"))))))
|
(unsetenv "LC_ALL"))))))
|
||||||
|
@ -337,7 +331,7 @@ experience for your users, your family and yourself")
|
||||||
(synopsis "Lightweight display manager")
|
(synopsis "Lightweight display manager")
|
||||||
(description "The Light Display Manager (LightDM) is a cross-desktop
|
(description "The Light Display Manager (LightDM) is a cross-desktop
|
||||||
display manager which supports different greeters.")
|
display manager which supports different greeters.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public lightdm-gtk-greeter
|
(define-public lightdm-gtk-greeter
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue