all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 810f96c602a336f6f0d11cc9d57f8dd6ff6d433b 954 bytes (raw)
name: gnu/packages/rdfind.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
(define-module (gnu packages rdfind)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (gnu packages nettle)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses))

(define-public rdfind
  (package
    (name "rdfind")
    (version "1.6.0")
    (inputs (list nettle))
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://rdfind.pauldreik.se/rdfind-" version
                           ".tar.gz"))
       (sha256
        (base32 "0y9j1w3nbgjks0k4kgm6qq92yrwgv66n212ncmlmhsl8y676wh3s"))))
    (build-system gnu-build-system)
    ;; Need to delete check because it tries to use /bin/echo
    (arguments
     `(#:phases (modify-phases %standard-phases
                  (delete 'check))))
    (synopsis "Find duplicate files utility")
    (description "Rdfind is a command line tool that finds duplicate files.")
    (home-page "https://rdfind.pauldreik.se/")
    (license gpl2+)))

debug log:

solving 810f96c602 ...
found 810f96c602 in https://yhetil.org/guix/f54030f9d5941ff9f1c4313729486912@free.fr/

applying [1/1] https://yhetil.org/guix/f54030f9d5941ff9f1c4313729486912@free.fr/
diff --git a/gnu/packages/rdfind.scm b/gnu/packages/rdfind.scm
new file mode 100644
index 0000000000..810f96c602

Checking patch gnu/packages/rdfind.scm...
Applied patch gnu/packages/rdfind.scm cleanly.

index at:
100644 810f96c602a336f6f0d11cc9d57f8dd6ff6d433b	gnu/packages/rdfind.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.