diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 06:26:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 06:26:17 +0200 |
commit | 58065ddd42872e615710fb16456b7cb6e1f9c80d (patch) | |
tree | e5b634be6a8ef3c4e585803038ee7a9db9cfc863 /gnu | |
parent | dd93e8a2b7fa616086d585c124321752c9cbd33f (diff) | |
download | guix-58065ddd42872e615710fb16456b7cb6e1f9c80d.tar guix-58065ddd42872e615710fb16456b7cb6e1f9c80d.tar.gz |
gnu: connman: Update to 1.37.
* gnu/packages/connman.scm (connman): Update to 1.37.
[arguments]: Remove unconventional comment (it's implicit in the name).
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/connman.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/connman.scm b/gnu/packages/connman.scm index 4369e0634f..39262b87da 100644 --- a/gnu/packages/connman.scm +++ b/gnu/packages/connman.scm @@ -44,15 +44,14 @@ (define-public connman (package (name "connman") - (version "1.36") + (version "1.37") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/network/connman/" "connman-" version ".tar.xz")) (sha256 - (base32 - "0x00dq5c2frz06md3g5y0jh5kbcj2hrfl5qjcqga8gs4ri0xp2f7")))) + (base32 "05kfjiqhqfmbbwc4snnyvi5hc4zxanac62f6gcwaf5mvn0z9pqkc")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -63,8 +62,6 @@ "--enable-vpnc" "--enable-pptp" "--enable-l2tp" - ;; location for daemon state files and internal configuration - ;; needs to be writeable "--localstatedir=/var" (string-append "--with-dbusconfdir=" (assoc-ref %outputs "out") "/etc") |