diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 18:55:57 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 18:55:57 +0200 |
commit | f7e25e2ec7a5755edd542ee36edd7ae5febe6399 (patch) | |
tree | 89cb648697387bdbdcdba8892aae01e7fdc32349 | |
parent | c4fa39188a9f198c99de528794cc7b3c4a053911 (diff) | |
download | patches-f7e25e2ec7a5755edd542ee36edd7ae5febe6399.tar patches-f7e25e2ec7a5755edd542ee36edd7ae5febe6399.tar.gz |
gnu: libpsl: Python is a native input.
* gnu/packages/web.scm (libpsl)[inputs]: Move PYTHON-WRAPPER ...
[native-inputs]: ... here.
-rw-r--r-- | gnu/packages/web.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 9fc7260a5b..42c00e77a5 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -867,11 +867,13 @@ for efficient socket-like bidirectional reliable communication channels.") "04pfagb7ppq3yibx4lhazd1v9nwkxdfkyy2rgcrmrf3mldsirga1")))) (build-system gnu-build-system) (native-inputs - `(("pkg-config" ,pkg-config))) + `(("pkg-config" ,pkg-config) + + ;; For tests. + ("python" ,python-wrapper))) (inputs `(("libidn2" ,libidn2) - ("libunistring" ,libunistring) - ("python" ,python-wrapper))) + ("libunistring" ,libunistring))) (home-page "https://github.com/rockdaboot/libpsl") (synopsis "C library for the Publix Suffix List") (description |