mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: miniupnpc: Use the correct ‘upnpc’ in ‘external-ip’.
* gnu/packages/upnp.scm (miniupnpc)[arguments]: Add ‘qualify-paths’ phase.
This commit is contained in:
parent
cdbdaf7b6b
commit
5af82630fe
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
|
||||
;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -55,7 +56,12 @@
|
|||
(assoc-ref %outputs "out") "/lib"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(delete 'configure)
|
||||
(add-before 'install 'qualify-paths
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(substitute* "external-ip.sh"
|
||||
(("upnpc")
|
||||
(string-append (assoc-ref outputs "out") "/bin/upnpc"))))))))
|
||||
(home-page "http://miniupnp.free.fr/")
|
||||
(synopsis "Library implementing the client side UPnP protocol")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue