unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
blob c3cbd857c30647f4fb316d66af5a56f91ec332f7 1190 bytes (raw)
name: gnu/packages/hash.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
29
 
(define-module (gnu packages hash)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system cmake))

(define-public pfff
  (package
    (name "pfff")
    (version "1.0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://github.com/pfff/pfff/archive/v" version ".tar.gz"))
              (file-name (string-append name "-" version ".tar.gz"))
              (sha256
               (base32
                "00m553aa277iarxj6dalmklyb64r7ias49bfwzbacsfg8h3kar8m"))))
    (build-system cmake-build-system)
    (home-page "http://biit.cs.ut.ee/pfff/")
    (synopsis "Probabilistic fast file fingerprinting tool")
    (description
     "Calculate a pfff-value which functions as a compact digital
fingerprint of a file by sampling randomly from the file instead of
reading it in full.  Consequently, the computation has a flat
performance characteristic, correlated with data variation rather than
file size.  pfff can be as reliable as existing hashing techniques,
with provably negligible risk of collisions.")
    (license license:bsd-3)))

debug log:

solving c3cbd85 ...
found c3cbd85 in https://yhetil.org/guix-devel/5688b49d.padrZIatyw/psCNV%pjotr.public12@thebird.nl/

applying [1/1] https://yhetil.org/guix-devel/5688b49d.padrZIatyw/psCNV%pjotr.public12@thebird.nl/
diff --git a/gnu/packages/hash.scm b/gnu/packages/hash.scm
new file mode 100644
index 0000000..c3cbd85

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

index at:
100644 c3cbd857c30647f4fb316d66af5a56f91ec332f7	gnu/packages/hash.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 public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).