diff options
author | Mark H Weaver <mhw@netris.org> | 2018-05-31 00:27:03 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-05-31 00:27:03 -0400 |
commit | 0d6f84aab1c2f4cd8ce1b68215a7a77426dc6cd5 (patch) | |
tree | 714784ba10d8b4f9f33393d285d148024ba5dea8 /gnu/packages/disk.scm | |
parent | 03d90319622a9fd9df1cf69cf123ed550e870276 (diff) | |
parent | 88a3465e4a467be92729fc37d8bda0155bbf5c52 (diff) | |
download | guix-0d6f84aab1c2f4cd8ce1b68215a7a77426dc6cd5.tar guix-0d6f84aab1c2f4cd8ce1b68215a7a77426dc6cd5.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/disk.scm')
-rw-r--r-- | gnu/packages/disk.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index d7bf726830..f5776ebda8 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -464,15 +464,15 @@ a card with a smaller capacity than stated.") (define-public duperemove (package (name "duperemove") - (version "v0.11.beta4") + (version "0.11") (source (origin (method url-fetch) (uri (string-append - "https://github.com/markfasheh/duperemove/archive/" + "https://github.com/markfasheh/duperemove/archive/v" version ".tar.gz")) (sha256 (base32 - "1h5nk03kflfnzihvn2rvfz1h623x1zpkn9hp29skd7n3f2bc5k7x")) + "0rjmmh42yqw9a5j6sp31cqwxk3s97dsi4xz0wpxpllj7bsp3aiw5")) (file-name (string-append name "-" version ".tar.gz")))) (build-system gnu-build-system) (native-inputs @@ -481,11 +481,10 @@ a card with a smaller capacity than stated.") `(("glib" ,glib) ("sqlite" ,sqlite))) (arguments - `(#:tests? #f ;no test suite + `(#:tests? #f ; no test suite #:phases (modify-phases %standard-phases - ;; no configure script - (delete 'configure)) + (delete 'configure)) ; no configure script #:make-flags (list (string-append "PREFIX=" %output) "CC=gcc"))) (home-page "https://github.com/markfasheh/duperemove") |