diff options
author | Ludovic Courtès <[email protected]> | 2018-07-24 13:44:17 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2018-07-24 15:48:06 +0200 |
commit | a14a2da5fecdb7c022a44ca1fbc7e60981236eb5 (patch) | |
tree | 0d9accd9fc247ac7719495daa500ac844fc0ad37 | |
parent | 68f50cfdd34670f7cbc922398e9117de27f964c9 (diff) |
gnu: lightdm: Take 'nologin' from the 'shadow' package.
Reported by brendarn on #guix.
* gnu/packages/display-managers.scm (lightdm)[inputs]: Use SHADOW
instead of UTIL-LINUX.
-rw-r--r-- | gnu/packages/display-managers.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm index a4ed601ec8..0a68099d67 100644 --- a/gnu/packages/display-managers.scm +++ b/gnu/packages/display-managers.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Joshua Grant <[email protected]> -;;; Copyright © 2014 Ludovic Courtès <[email protected]> +;;; Copyright © 2014, 2018 Ludovic Courtès <[email protected]> ;;; Copyright © 2014 Andreas Enge <[email protected]> ;;; Copyright © 2017 Ricardo Wurmus <[email protected]> ;;; Copyright © 2017 Sou Bunnbu <[email protected]> @@ -257,7 +257,7 @@ create smooth, animated user interfaces.") (inputs `(("audit" ,audit) ("linux-pam" ,linux-pam) - ("util-linux" ,util-linux) ; for sbin/nologin + ("shadow" ,shadow) ;for sbin/nologin ("libgcrypt" ,libgcrypt) ("libxcb" ,libxcb))) (native-inputs |