From 4f77288569a072e2b276444364cfc7fbd3ac04ce Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 30 Jun 2021 15:42:05 +0200 Subject: gnu: libesmtp: Update to 1.1.0. * gnu/packages/mail.scm (libesmtp): Update to 1.1.0. [native-inputs]: Remove them all again. --- gnu/packages/mail.scm | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index b739439083..84b1d19cbe 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -162,6 +162,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system go) #:use-module (guix build-system guile) + #:use-module (guix build-system meson) #:use-module (guix build-system perl) #:use-module (guix build-system python) #:use-module (guix build-system trivial) @@ -2314,7 +2315,7 @@ format and headers.") (define-public libesmtp (package (name "libesmtp") - (version "1.0.6") + (version "1.1.0") (source (origin (method git-fetch) @@ -2323,12 +2324,8 @@ format and headers.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0pylvjpdf92i0j9bl43sg37k1ksbzk1k7cgdk91kkcc0krh0r09g")))) - (build-system gnu-build-system) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool))) + (base32 "1bhh8hlsl9597x0bnfl563k2c09b61qnkb9mfyqcmzlq63m1zw5y")))) + (build-system meson-build-system) (propagated-inputs `(("openssl" ,openssl))) (home-page "http://www.stafford.uklinux.net/libesmtp/") -- cgit v1.2.3 '/guix/log/gnu/services/sddm.scm'>
path: root/gnu/services/sddm.scm
AgeCommit message (Expand)Author
2020-11-18services: SDDM: Wait for elogind before starting....Fixes <https://bugs.gnu.org/44669>. * gnu/services/sddm.scm (sddm-shepherd-service)[requirement]: Add elogind. Marius Bakke
2020-04-19services: sddm: Have sddm provision xorg-server....* gnu/services/sddm.scm (sddm-shepherd-service)[shepherd-service]: Have sddm provision 'xorg-server like the other display managers. Efraim Flashner
2020-03-01services: set-xorg-configuration: handle slim and sddm...* gnu/services/xorg.scm (handle-xorg-configuration): New syntax. (gdm-service-type, slim-service-type): Use handle-xorg-configuration. * gnu/services/sddm.scm (sddm-service-type): Likewise. Jakub Kądziołka
2020-02-16doc: Fix typo....* doc/guix.texi (X Window)[sddm-service-type]: SSDM -> SDDM typo fix. [sddm-configuration]: Also list 'maya' theme. * gnu/services/sddm.scm (sddm-service): Fix typo in doc string. (sddm-configuration): Also list 'maya' theme. Efraim Flashner