gnu: bless: Remove bundled sources for sparsehash.

* gnu/packages/bioinformatics.scm (bless)[source]: Delete
"google-sparsehash" sources.
[inputs]: Add "sparsehash".
This commit is contained in:
Ricardo Wurmus 2016-03-14 14:16:55 +01:00
parent 6c1305f9ec
commit 953c12232f
1 changed files with 4 additions and 2 deletions

View File

@ -579,10 +579,11 @@ confidence to have in an alignment.")
(snippet (snippet
`(begin `(begin
;; Remove bundled boost, pigz, zlib, and .git directory ;; Remove bundled boost, pigz, zlib, and .git directory
;; FIXME: also remove bundled sources for google-sparsehash, ;; FIXME: also remove bundled sources for murmurhash3 and
;; murmurhash3, kmc once packaged. ;; kmc once packaged.
(delete-file-recursively "boost") (delete-file-recursively "boost")
(delete-file-recursively "pigz") (delete-file-recursively "pigz")
(delete-file-recursively "google-sparsehash")
(delete-file-recursively "zlib") (delete-file-recursively "zlib")
(delete-file-recursively ".git") (delete-file-recursively ".git")
#t)))) #t))))
@ -632,6 +633,7 @@ confidence to have in an alignment.")
(inputs (inputs
`(("openmpi" ,openmpi) `(("openmpi" ,openmpi)
("boost" ,boost) ("boost" ,boost)
("sparsehash" ,sparsehash)
("pigz" ,pigz) ("pigz" ,pigz)
("zlib" ,zlib))) ("zlib" ,zlib)))
(supported-systems '("x86_64-linux")) (supported-systems '("x86_64-linux"))