gnu: sddm: Update to 0.17.0.
* gnu/packages/display-managers.scm (sddm): Update to 0.17.0 [arguments]: Clean up comments.
This commit is contained in:
parent
a82bb55218
commit
28faa40c40
1 changed files with 7 additions and 6 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2017 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2017 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
|
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -133,7 +134,7 @@ Qt-style API for Wayland clients.")
|
||||||
(define-public sddm
|
(define-public sddm
|
||||||
(package
|
(package
|
||||||
(name "sddm")
|
(name "sddm")
|
||||||
(version "0.16.0")
|
(version "0.17.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -142,7 +143,7 @@ Qt-style API for Wayland clients.")
|
||||||
"sddm-" version ".tar.xz"))
|
"sddm-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0fwf1wsdak5yglykfyq4wbx9g9gi079n8ncjrdynz17hwwiql4z9"))))
|
"0ch6rdppgy2vbzw0c2x9a4c6ry46vx7p6b76d8xbh2nvxh23xv0k"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
@ -161,15 +162,15 @@ Qt-style API for Wayland clients.")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list
|
(list
|
||||||
;; Currently doesn't do anything
|
;; This option currently does nothing, but will presumably be enabled
|
||||||
;; Option added by enable wayland greeters PR
|
;; if/when <https://github.com/sddm/sddm/pull/616> is merged.
|
||||||
"-DENABLE_WAYLAND=ON"
|
"-DENABLE_WAYLAND=ON"
|
||||||
"-DENABLE_PAM=ON"
|
"-DENABLE_PAM=ON"
|
||||||
;; Both flags are required for elogind support.
|
;; Both flags are required for elogind support.
|
||||||
"-DNO_SYSTEMD=ON" "-DUSE_ELOGIND=ON"
|
"-DNO_SYSTEMD=ON" "-DUSE_ELOGIND=ON"
|
||||||
"-DCONFIG_FILE=/etc/sddm.conf"
|
"-DCONFIG_FILE=/etc/sddm.conf"
|
||||||
;; Set path to /etc/login.defs
|
;; Set path to /etc/login.defs.
|
||||||
;; Alternatively use -DUID_MIN and -DUID_MAX
|
;; An alternative would be to use -DUID_MIN and -DUID_MAX.
|
||||||
(string-append "-DLOGIN_DEFS_PATH="
|
(string-append "-DLOGIN_DEFS_PATH="
|
||||||
(assoc-ref %build-inputs "shadow")
|
(assoc-ref %build-inputs "shadow")
|
||||||
"/etc/login.defs")
|
"/etc/login.defs")
|
||||||
|
|
Reference in a new issue