diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 06:12:38 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-15 06:13:39 +0200 |
commit | 736dfe3568d620d66c7a17e4b93d4b5fc7b64c1d (patch) | |
tree | 2147fcd0b5a496328fc5006119682368799acac5 /gnu | |
parent | e41ddf7605922b3a30d4cc37fe700068d6ee0d70 (diff) | |
download | guix-736dfe3568d620d66c7a17e4b93d4b5fc7b64c1d.tar guix-736dfe3568d620d66c7a17e4b93d4b5fc7b64c1d.tar.gz |
gnu: conky: Use GIT-FILE-NAME.
* gnu/packages/conky.scm (conky)[source]: Use GIT-FILE-NAME instead of
bogus ’[…].tar.gz’ for a directory.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/conky.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/conky.scm b/gnu/packages/conky.scm index c3b72ea063..e38189c401 100644 --- a/gnu/packages/conky.scm +++ b/gnu/packages/conky.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Siniša Biđin <sinisa@bidin.eu> -;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz> ;;; ;;; This file is part of GNU Guix. @@ -44,7 +44,7 @@ (uri (git-reference (url home-page) (commit (string-append "v" version)))) - (file-name (string-append name "-" version ".tar.gz")) + (file-name (git-file-name name version)) (sha256 (base32 "0yalcpwx85smh6nnvxxsgqi344nk7jzlkkam7yjghm87df4v7xmx")))) (build-system cmake-build-system) |