diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-08-01 21:21:55 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-08-02 01:49:24 +0200 |
commit | 9b76aa1031e078f273633cc4f59d4641b9f5332f (patch) | |
tree | 7fe32334cdb4303291265ae6f9a05c6045eb0f2b /gnu | |
parent | d9e3f9d9d7c087ee10ea5e8856f435ead44ca1d1 (diff) | |
download | guix-9b76aa1031e078f273633cc4f59d4641b9f5332f.tar guix-9b76aa1031e078f273633cc4f59d4641b9f5332f.tar.gz |
gnu: php: Don't use NAME in source URI.
* gnu/packages/php.scm (php)[source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/php.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index 62444308db..09289e7069 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -63,7 +63,7 @@ (source (origin (method url-fetch) (uri (string-append home-page "distributions/" - name "-" version ".tar.xz")) + "php-" version ".tar.xz")) (sha256 (base32 "0r51aiff2abbr3d2swhvja0wm56sjxzqbciabcvvq3m3v9kqkz7y")) |