diff options
author | Andreas Enge <andreas@enge.fr> | 2014-03-02 14:12:40 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2014-03-02 14:12:40 +0100 |
commit | 98b79d361c66425b7a71fc66c043e44910efc9a1 (patch) | |
tree | cc41532a99c9ba6a03ac66beeda84f1b148fe7ff /gnu | |
parent | d56052bd8050778464e0f61a1ccfdb7a621c210c (diff) | |
download | guix-98b79d361c66425b7a71fc66c043e44910efc9a1.tar guix-98b79d361c66425b7a71fc66c043e44910efc9a1.tar.gz |
gnu: subversion: Enable http checkouts.
* gnu/packages/version-control.scm (subversion): Add input neon-0.29.6 to
enable http and https checkouts.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/version-control.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index f4f2afd5d5..708856ab93 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -312,11 +312,13 @@ property manipulation.") (system* "make" "install"))))))) %standard-phases))) (native-inputs - ;; For the Perl bindings. - `(("swig" ,swig))) + `(("pkg-config" ,pkg-config) + ;; For the Perl bindings. + ("swig" ,swig))) (inputs `(("apr" ,apr) ("apr-util" ,apr-util) + ("neon" ,neon-0.29.6) ("perl" ,perl) ("python" ,python-2) ; incompatible with Python 3 (print syntax) ("sqlite" ,sqlite) |