aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-build-branch.sh
diff options
context:
space:
mode:
authorGreg Hogan <code@greghogan.com>2020-09-22 10:46:51 -0400
committerEfraim Flashner <efraim@flashner.co.il>2020-09-22 22:39:39 +0300
commitbd1bce0896150d7351d0c5553d197b0d628d8471 (patch)
treeb83e9b50949a6ebadcd39aff9b638bd46fd82abb /tests/guix-build-branch.sh
parentd3456739c5afd210cdc47b8c147adc277b84bfa8 (diff)
downloadguix-bd1bce0896150d7351d0c5553d197b0d628d8471.tar.gz
guix-bd1bce0896150d7351d0c5553d197b0d628d8471.zip
gnu: python-mpmath: Update to 1.1.0.
* gnu/packages/python-xyz.scm (python-mpmath): Update to 1.1.0. [source]: Download from pypi. [native-inputs]: Add pytest. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'tests/guix-build-branch.sh')
0 files changed, 0 insertions, 0 deletions
ed-off-by: 宋文武 <iyzsong@member.fsf.org> Zheng Junjie 2024-02-24services: gdm: Enable wayland by default....* gnu/services/xorg.scm (<gdm-configuration>): Change the default value for wayland? from '#f' to '#t'. Change-Id: Ic966dfc462b1140894aa6c38c23e229d6252d340 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Vivien Kraus 2024-01-05services: xorg: ‘dbus-daemon-wrapper’ handles Home profile....* gnu/services/xorg.scm (dbus-daemon-wrapper): Handle Home profile. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Change-Id: Ib2f2330b7ea017ddf33d636de71aaa1c316808cb Feng Shu 2023-06-04services: screen-locker-service-type: Configurable PAM and setuid....screen-locker-service-type by default does both define PAM entry and make program setuid binary. Normally both methods are mutually exclusive, if binary has setuid set it does not really needs PAM, otherway around also similar, if PAM is enabled binary should not relay on setuid. Recent swaylock package now compiled with PAM support. When PAM support is compiled in, swaylock rejects executing if binary is also setuid program. This change turns screen-locker-configuration from strict PAM AND setuid to more flexible PAM AND/OR setuid. Allowing swaylock to be configured properly while supporting other screen locker preferences. * gnu/services/xorg.scm (screen-locker-configuration): Switch from define-record-type to define-configuration. [using-pam?]: New field to control PAM entry existence. [using-setuid?]: New field to control setuid binary existence. (screen-locker-pam-services): Should not make unix-pam-service if using-pam? is set to #f. (screen-locker-setuid-programs): Should not make program setuid program if using-setuid? is set to #f. (screen-locker-generate-doc): Internal function to generate configuration documentation. (screen-locker-service): Adapt to new screen-locker-configuration. * gnu/services/desktop.scm (desktop-services-for-system): Adapt to new screen-locker-configuration. * doc/guix.texi: Reflect new changes to screen-locker-configuration. Signed-off-by: Josselin Poiret <dev@jpoiret.xyz> muradm