diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-17 23:57:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-17 23:57:49 +0100 |
commit | e77df67cc25e4f221af530ed80f1c5f7a839e86f (patch) | |
tree | fa40f06e5d3b32f21525eec09e00a5c40831e243 /gnu/packages/gnome.scm | |
parent | 3a317f7476f8c6012e166ff9f340f861938721c9 (diff) | |
download | guix-e77df67cc25e4f221af530ed80f1c5f7a839e86f.tar.gz |
gnu: libsoup: Depend on a fixed version of Samba.
This avoids big rebuilds when Samba is upgraded. * gnu/packages/samba.scm (samba/fixed): New variable. * gnu/packages/gnome.scm (libsoup-minimal)[inputs]: Use it instead of SAMBA.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 39ab43c90c..8677a6849d 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4940,7 +4940,7 @@ libxml to ease remote use of the RESTful API.") ("zlib" ,zlib))) (inputs `(("mit-krb5" ,mit-krb5) - ("ntlm_auth" ,samba))) ; For ntlm_auth support + ("ntlm_auth" ,samba/fixed))) ; For ntlm_auth support (home-page "https://wiki.gnome.org/Projects/libsoup") (synopsis "GLib-based HTTP Library") (description |