gnu: 'uncompressed-file-fetch' no longer depends on gzip.

* gnu/packages/emacs.scm (uncompressed-file-fetch): Remove dependency on
GZIP.
This commit is contained in:
Ludovic Courtès 2016-05-16 22:45:37 +02:00
parent cb307c0833
commit 4f04243405
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1403,8 +1403,6 @@ (define* (uncompressed-file-fetch url hash-algo hash
(gexp->derivation (or name (basename url))
#~(begin
(mkdir #$output)
(setenv "PATH"
(string-append #$gzip "/bin"))
(chdir #$output)
(copy-file #$drv (basename #$url))))))