diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-08 16:10:35 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-09 02:33:30 +0100 |
commit | a48db08afe3e43c568c49a94d55bf3c93357bb03 (patch) | |
tree | e1a2a3b3d38eb81bd8569fc7288959dd5d8b61bd /gnu/packages/wm.scm | |
parent | 0bd1498fc40820be35125cc0a62482d015b58e9b (diff) | |
download | patches-a48db08afe3e43c568c49a94d55bf3c93357bb03.tar patches-a48db08afe3e43c568c49a94d55bf3c93357bb03.tar.gz |
gnu: i3lock-fancy: Don't use unstable tarball.
* gnu/packages/wm.scm (i3lock-fancy)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages/wm.scm')
-rw-r--r-- | gnu/packages/wm.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 554a14154c..06dada269c 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -434,16 +434,16 @@ Features include: (version "0.2") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/meskarune/i3lock-fancy/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/meskarune/i3lock-fancy.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "020m7mnfq5cvir7p9v3hkb7cvb4cai33wppxl2zdwscwwjnchc5y")))) + (base32 "11g2kkim33ra38d1m897sq1ifajw17iyw9mr7sg1q8i2ibl4lfsi")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ;No tests included + `(#:tests? #f ; no tests included #:phases (modify-phases %standard-phases (replace 'configure |