summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-04-19 20:32:22 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-04-19 20:32:22 -0400
commitc0ac055918ec1eee53c7e14f62c2e3516321588b (patch)
treef45021c7d081379a198f1d1ae09bb245e07d822e
parentc7918bbe98283251072366215252784e2abdc2a4 (diff)
downloadguix-c0ac055918ec1eee53c7e14f62c2e3516321588b.tar.gz
Revert "gnu: libsoup: Depend on Samba only on supported systems."
This reverts commit 1344c3388a87d427209f63bdbfacabbd4c0a1033.  It was fixed
lower in the graph (in samba) on the master branch with commit
813d670b151b06181fd045d6e00104f3da63f4a0 ("gnu: samba: Make the
python-cryptography input conditional.").
-rw-r--r--gnu/packages/gnome.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index f1ec90ab39..dd44fcff75 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5154,14 +5154,7 @@ as OpenStreetMap, OpenCycleMap, OpenAerialMap and Maps.")
            sqlite
            zlib))
     (inputs
-     (append (list mit-krb5)
-
-             ;; Samba is an optional dependency that depends on Rust, which is
-             ;; missing on some systems such as i686-linux.
-             (if (and (not (%current-target-system))
-                      (supported-package? samba/pinned))
-                 (list samba/pinned)              ;for ntlm_auth support
-                 '())))
+     (list mit-krb5 samba/pinned))     ; For ntlm_auth support
     (home-page "https://wiki.gnome.org/Projects/libsoup")
     (synopsis "GLib-based HTTP Library")
     (description