diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-18 17:38:34 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-18 18:07:05 +0100 |
commit | 9aed8a1e23d5f4c60a8c5bb671a1173068de394e (patch) | |
tree | b4b4ea80b7e7044691d7771ca90e22847f6789ff | |
parent | 3b990922c76bbf70202e2cada5795ec4c0010cdb (diff) | |
download | guix-9aed8a1e23d5f4c60a8c5bb671a1173068de394e.tar guix-9aed8a1e23d5f4c60a8c5bb671a1173068de394e.tar.gz |
gnu: enet: Don't use NAME in source URI.
* gnu/packages/networking.scm (enet)[source]: Hard-code NAME.
-rw-r--r-- | gnu/packages/networking.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index c87867a8bf..ab253013bf 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1208,7 +1208,7 @@ HTTP proxies.") (source (origin (method url-fetch) (uri (string-append "http://enet.bespin.org/download/" - name "-" version ".tar.gz")) + "enet-" version ".tar.gz")) (sha256 (base32 "0w780zc6cy8yq4cskpphx0f91lzh51vh9lwyc5ll8hhamdxgbxlq")))) |