diff options
author | Pjotr Prins | 2016-01-11 13:54:33 +0300 |
---|---|---|
committer | Pjotr Prins | 2016-01-11 13:54:33 +0300 |
commit | 4378f6f6cfb34389070410d1bd9a0505ed29f541 (patch) | |
tree | 4d68b155ecd72d4bcead62aef5bcb4b319aa51a0 /gn | |
parent | 077e49ae8f4fecbe6ef697df5bffce1cfcca889f (diff) | |
download | guix-bioinformatics-4378f6f6cfb34389070410d1bd9a0505ed29f541.tar.gz |
pfff package went mainstream
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/pfff.scm | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/gn/packages/pfff.scm b/gn/packages/pfff.scm deleted file mode 100644 index f5a5efc..0000000 --- a/gn/packages/pfff.scm +++ /dev/null @@ -1,27 +0,0 @@ -(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-gn - (package - (name "pfff-gn") - (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))) |