aboutsummaryrefslogtreecommitdiff
path: root/contrib/packages/guix
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-10-17 12:50:35 +0000
committerng0 <ng0@infotropique.org>2017-10-17 12:50:35 +0000
commit896aff0c5f66e3c590db01bf84c2d8800e563e57 (patch)
treebcab42006f2530861047738c5b90fb039627fbf4 /contrib/packages/guix
parent7348fad86391b913ecc41f986066f260efb04633 (diff)
downloadgnunet-896aff0c5f66e3c590db01bf84c2d8800e563e57.tar.gz
gnunet-896aff0c5f66e3c590db01bf84c2d8800e563e57.zip
contrib/packages/guix: Add 'which' to native-inputs
Diffstat (limited to 'contrib/packages/guix')
-rw-r--r--contrib/packages/guix/gnunet-doc.scm1
-rw-r--r--contrib/packages/guix/gnunet.scm1
-rw-r--r--contrib/packages/guix/guix-env.scm1
-rw-r--r--contrib/packages/guix/packages/gnunet/packages/gnunet.scm3
4 files changed, 6 insertions, 0 deletions
diff --git a/contrib/packages/guix/gnunet-doc.scm b/contrib/packages/guix/gnunet-doc.scm
index 9974c1b51..da714077f 100644
--- a/contrib/packages/guix/gnunet-doc.scm
+++ b/contrib/packages/guix/gnunet-doc.scm
@@ -126,6 +126,7 @@
126 ("gnu-gettext" ,gnu-gettext) 126 ("gnu-gettext" ,gnu-gettext)
127 ("graphviz" ,graphviz) ; dot 127 ("graphviz" ,graphviz) ; dot
128 ("texinfo-5" ,texinfo-5) ; Debian stable 128 ("texinfo-5" ,texinfo-5) ; Debian stable
129 ("which" ,which)
129 ("libtool" ,libtool))) 130 ("libtool" ,libtool)))
130 (arguments 131 (arguments
131 `(#:configure-flags 132 `(#:configure-flags
diff --git a/contrib/packages/guix/gnunet.scm b/contrib/packages/guix/gnunet.scm
index 4ce0738c4..d8eee1805 100644
--- a/contrib/packages/guix/gnunet.scm
+++ b/contrib/packages/guix/gnunet.scm
@@ -124,6 +124,7 @@
124 ("autoconf" ,autoconf) 124 ("autoconf" ,autoconf)
125 ("automake" ,automake) 125 ("automake" ,automake)
126 ("gnu-gettext" ,gnu-gettext) 126 ("gnu-gettext" ,gnu-gettext)
127 ("which" ,which)
127 ("texinfo" ,texinfo-5) ; Debian stable: 5.2 128 ("texinfo" ,texinfo-5) ; Debian stable: 5.2
128 ("libtool" ,libtool))) 129 ("libtool" ,libtool)))
129 (outputs '("out" "debug")) 130 (outputs '("out" "debug"))
diff --git a/contrib/packages/guix/guix-env.scm b/contrib/packages/guix/guix-env.scm
index c62a713a2..da4a60b73 100644
--- a/contrib/packages/guix/guix-env.scm
+++ b/contrib/packages/guix/guix-env.scm
@@ -146,6 +146,7 @@
146 ("autoconf" ,autoconf) 146 ("autoconf" ,autoconf)
147 ("automake" ,automake) 147 ("automake" ,automake)
148 ("gnu-gettext" ,gnu-gettext) 148 ("gnu-gettext" ,gnu-gettext)
149 ("which" ,which)
149 ("texinfo" ,texinfo-5) ; Debian stable: 5.2 150 ("texinfo" ,texinfo-5) ; Debian stable: 5.2
150 ("libtool" ,libtool))) 151 ("libtool" ,libtool)))
151 ;; TODO: To make use of out:debug, which carries the symbols, 152 ;; TODO: To make use of out:debug, which carries the symbols,
diff --git a/contrib/packages/guix/packages/gnunet/packages/gnunet.scm b/contrib/packages/guix/packages/gnunet/packages/gnunet.scm
index fbc132d78..eaceb68fc 100644
--- a/contrib/packages/guix/packages/gnunet/packages/gnunet.scm
+++ b/contrib/packages/guix/packages/gnunet/packages/gnunet.scm
@@ -60,6 +60,7 @@
60;; TODO: Use HEAD without checking sum of it. 60;; TODO: Use HEAD without checking sum of it.
61;; Explanation for name scheme: UNIXPATH is capped at 108 characters, 61;; Explanation for name scheme: UNIXPATH is capped at 108 characters,
62;; this causes lots of tests to fail. 62;; this causes lots of tests to fail.
63;; FIXME: make this file MUCH shorter.
63(define-public gnunetg 64(define-public gnunetg
64 (let* ((commit "3c3090717610ea787fdd3562901329254a6af0d6") 65 (let* ((commit "3c3090717610ea787fdd3562901329254a6af0d6")
65 (revision "32")) 66 (revision "32"))
@@ -112,6 +113,7 @@
112 ("autoconf" ,autoconf) 113 ("autoconf" ,autoconf)
113 ("automake" ,automake) 114 ("automake" ,automake)
114 ("gnu-gettext" ,gnu-gettext) 115 ("gnu-gettext" ,gnu-gettext)
116 ("which" ,which)
115 ("texinfo" ,texinfo) 117 ("texinfo" ,texinfo)
116 ("libtool" ,libtool))) 118 ("libtool" ,libtool)))
117 (outputs '("out" "debug")) 119 (outputs '("out" "debug"))
@@ -199,6 +201,7 @@
199 (native-inputs 201 (native-inputs
200 `(("pkg-config" ,pkg-config) 202 `(("pkg-config" ,pkg-config)
201 ("autoconf" ,autoconf) 203 ("autoconf" ,autoconf)
204 ("which" ,which)
202 ("automake" ,automake) 205 ("automake" ,automake)
203 ("gnu-gettext" ,gnu-gettext) 206 ("gnu-gettext" ,gnu-gettext)
204 ("texinfo" ,texinfo) 207 ("texinfo" ,texinfo)