From 8de377564e57c2615c9422f1c010617003a52162 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Wed, 24 Jun 2020 10:27:58 +0300 Subject: gnu: pflask: Don't use unstable tarball. * gnu/packages/linux.scm (pflask)[source]: Download using git-fetch. --- gnu/packages/linux.scm | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index a56eb5775a..8f8c0a1202 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -3788,13 +3788,14 @@ particular the @code{perf} command.") (name "pflask") (version "0.2") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/ghedo/pflask/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ghedo/pflask") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "1g8fjj67dfkc2s0852l9vqi1pm61gp4rxbpzbzg780f5s5hd1fys")))) + "1jikjbhlxlqracnai3v9krzcgd2xwp0p4adw5n07yxc7b857damz")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no tests -- cgit v1.2.3