diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-18 16:09:38 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-18 18:07:03 +0100 |
commit | e28f3cd9f0b71421b7ef895b6d5a6638943fa15b (patch) | |
tree | fa1336559c1a5cf11b58d40e9e7bf9b6e3175286 /gnu | |
parent | a12d21630f4742c300e26a2eb30dc6cfda4c118a (diff) | |
download | guix-e28f3cd9f0b71421b7ef895b6d5a6638943fa15b.tar guix-e28f3cd9f0b71421b7ef895b6d5a6638943fa15b.tar.gz |
gnu: xcalc: Don't use NAME in source URI.
* gnu/packages/xorg.scm (xcalc)[source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/xorg.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index b18e846a6c..88598b2c35 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -2087,10 +2087,8 @@ legacy X clients.") (source (origin (method url-fetch) - (uri (string-append - "mirror://xorg/individual/app/" name "-" - version - ".tar.gz")) + (uri (string-append "mirror://xorg/individual/app/" + "xcalc-" version ".tar.gz")) (sha256 (base32 "1xgih1iq9498m7vk22qrdsck1rb905sn395azjn4a6pmhfai401b")))) (build-system gnu-build-system) |