diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 06:20:45 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 06:20:45 +0200 |
commit | dd93e8a2b7fa616086d585c124321752c9cbd33f (patch) | |
tree | 629c278caf89472c4473ecd23fd7006e99f598eb /gnu/packages/connman.scm | |
parent | 8f61299140c08b7de7e69e030ef65b290e270584 (diff) | |
download | patches-dd93e8a2b7fa616086d585c124321752c9cbd33f.tar patches-dd93e8a2b7fa616086d585c124321752c9cbd33f.tar.gz |
gnu: connman: Don't use NAME in source URI.
* gnu/packages/connman.scm (connman)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/connman.scm')
-rw-r--r-- | gnu/packages/connman.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/connman.scm b/gnu/packages/connman.scm index 1290dd010d..4369e0634f 100644 --- a/gnu/packages/connman.scm +++ b/gnu/packages/connman.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -49,7 +49,7 @@ (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/network/connman/" - name "-" version ".tar.xz")) + "connman-" version ".tar.xz")) (sha256 (base32 "0x00dq5c2frz06md3g5y0jh5kbcj2hrfl5qjcqga8gs4ri0xp2f7")))) |