aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-09-06 18:45:36 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-09-06 18:45:36 +0200
commita69d9505d1a50a6985e752925e376f89c50f25f8 (patch)
treed27998121946a90b81e6c21e087982d888fe1562
parent979fec002ce8c7d9d4c82b762c0caa5da0beac77 (diff)
downloadhardware_replicant_libsamsung-ipc-a69d9505d1a50a6985e752925e376f89c50f25f8.tar.gz
hardware_replicant_libsamsung-ipc-a69d9505d1a50a6985e752925e376f89c50f25f8.tar.bz2
hardware_replicant_libsamsung-ipc-a69d9505d1a50a6985e752925e376f89c50f25f8.zip
scripts/guix.scm: libcurl is an input, not a native-input
The https-send-sms tool is linked to libcurl, so libcurl is needed at runtime. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--scripts/guix.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/guix.scm b/scripts/guix.scm
index eb9689c..3672ea6 100644
--- a/scripts/guix.scm
+++ b/scripts/guix.scm
@@ -191,14 +191,14 @@
("aclocal" ,automake)
("ddrescue", ddrescue)
("libc:debug", (@@ (gnu packages commencement) glibc-final) "debug")
- ("libcurl" ,curl)
("libtool" ,libtool)
("pkgconfig" ,pkg-config)
("python" ,python)
("python-sh" ,python-sh)
("valgrind" ,valgrind)))
(inputs
- `(("openssl" ,openssl)))
+ `(("libcurl" ,curl)
+ ("openssl" ,openssl)))
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -260,7 +260,6 @@ found in many Samsung smartphones and tablets.")
`(("autoreconf" ,autoconf)
("aclocal" ,automake)
("ddrescue", ddrescue)
- ("libcurl" ,curl)
("libtool" ,libtool)
("pkgconfig" ,pkg-config)
("python" ,python)