aboutsummaryrefslogtreecommitdiff
path: root/gn/packages
diff options
context:
space:
mode:
authorPjotr Prins2016-01-01 11:16:35 +0300
committerPjotr Prins2016-01-01 11:16:35 +0300
commitbb5a09c471b4a913a476d94913b2221ce3140366 (patch)
tree584715eb3b287e8bb3e58247694d3f1f9a38edf7 /gn/packages
parent9892b258a2ec277ba3d9c345f96e5bb27dd4e4ec (diff)
downloadguix-bioinformatics-bb5a09c471b4a913a476d94913b2221ce3140366.tar.gz
Pfff
Diffstat (limited to 'gn/packages')
-rw-r--r--gn/packages/pfff.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gn/packages/pfff.scm b/gn/packages/pfff.scm
new file mode 100644
index 0000000..185a682
--- /dev/null
+++ b/gn/packages/pfff.scm
@@ -0,0 +1,27 @@
+(define-module (gn packages pfff)
+ #: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"))
+ (sha256
+ (base32
+ "00m553aa277iarxj6dalmklyb64r7ias49bfwzbacsfg8h3kar8m"))))
+ (build-system cmake-build-system)
+ (home-page "http://biit.cs.ut.ee/pfff/")
+ (synopsis "Probabilistic fast file fingerprinting")
+ (description
+ "Calculate a probablistic fast finger print (pfff) 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.")
+ (license license:bsd-3)))