diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-08-16 09:18:09 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-08-17 10:27:23 +0800 |
commit | aadcbbcbc6043ecb6f95debb2c5aae36345111d3 (patch) | |
tree | 5220ac277156e323e3d0dc5084cfb7511d956017 /gnu | |
parent | e4cbf8033698203dc40e8c362aed3e51b6c0afd9 (diff) | |
download | guix-aadcbbcbc6043ecb6f95debb2c5aae36345111d3.tar.gz guix-aadcbbcbc6043ecb6f95debb2c5aae36345111d3.zip |
gnu: unbound: Fix cross-compilation.
* gnu/packages/dns.scm (unbound)[native-inputs]: Add python-wrapper.
Change-Id: I98f5e11dad2d89a4f25fca8e0935134b39e779e3
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/dns.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index b33203c060..b1eb4bdb4d 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -18,7 +18,7 @@ ;;; Copyright © 2020 Leo Famulari <leo@famulari.name> ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2020 Simon South <simon@simonsouth.net> -;;; Copyright © 2021 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2021, 2024 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2023 Bruno Victal <mirai@makinata.eu> ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space> ;;; Copyright © 2024 John Kehayias <john.kehayias@protonmail.com> @@ -647,7 +647,7 @@ BIND and djbdns---whilst using relatively little memory.") (build-system gnu-build-system) (outputs '("out" "python")) (native-inputs - (list flex swig)) + (list flex swig python-wrapper)) (inputs (list expat libevent |