From acc6eb89c81678706c5bc2b3fd1baa0cd604e6b1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 12 Feb 2019 15:15:45 +0100 Subject: gnu: duperemove: Don't use unstable tarball. * gnu/packages/disk.scm (duperemove)[source]: Use GIT-FETCH and GIT-FILE-NAME. --- gnu/packages/disk.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'gnu/packages/disk.scm') diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 354f00dfa1..55756445af 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -479,15 +479,15 @@ a card with a smaller capacity than stated.") (package (name "duperemove") (version "0.11.1") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/markfasheh/duperemove/archive/v" - version ".tar.gz")) - (sha256 - (base32 - "1j1alh3blbj1wg1zmkpwrf40nggwg8xbgsk2mnn9albymwdwkhvm")) - (file-name (string-append name "-" version ".tar.gz")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/markfasheh/duperemove.git") + (commit (string-append "v" version)))) + (sha256 + (base32 "1scz76pvpljvrpfn176125xwaqwyy4pirlm11sc9spb2hyzknw2z")) + (file-name (git-file-name name version)))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit v1.2.3