diff options
author | ng0 <ng0@we.make.ritual.n0.is> | 2016-07-29 17:45:25 +0000 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-07-30 15:33:57 +0800 |
commit | 9b12bc7032028eaf365da4283834515c0bbb2109 (patch) | |
tree | ed900d83b135cf5f0d58aa13790866cf44ea4ac2 /gnu/packages/gnunet.scm | |
parent | d25639731adbb8fc13a79bd3da2ce8ae3dbbf354 (diff) | |
download | guix-9b12bc7032028eaf365da4283834515c0bbb2109.tar guix-9b12bc7032028eaf365da4283834515c0bbb2109.tar.gz |
gnu: gnunet-gtk: Configure with gnunet path.
* gnun/packages/gnunet.scm (gnunet-gtk)[arguments]: Add '--with-gnunet'
to #:configure-flags.
Signed-off-by: 宋文武 <iyzsong@gmail.com>
Diffstat (limited to 'gnu/packages/gnunet.scm')
-rw-r--r-- | gnu/packages/gnunet.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 67b04375e8..4d888bdb2a 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -316,7 +316,9 @@ services.") (arguments `(#:configure-flags (list "--without-libunique" - "--with-qrencode"))) + "--with-qrencode" + (string-append "--with-gnunet=" + (assoc-ref %build-inputs "gnunet"))))) (inputs `(("gnunet" ,gnunet) ("libgcrypt" ,libgcrypt) |