about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEfraim Flashner2022-11-07 10:19:59 +0200
committerEfraim Flashner2022-11-07 10:19:59 +0200
commitea88896fb43c79b9b0ee8b6722adc61ebce247b0 (patch)
tree49b6fa4c93ef6c13152a149baa1852863f2f373c
parentf5b9d966f5c9bc8362ab59fc17e2d1c04e24a280 (diff)
downloadguix-bioinformatics-ea88896fb43c79b9b0ee8b6722adc61ebce247b0.tar.gz
gn: Add missing crate
-rw-r--r--gn/packages/crates-io.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gn/packages/crates-io.scm b/gn/packages/crates-io.scm
index 2ffd798..8ea1765 100644
--- a/gn/packages/crates-io.scm
+++ b/gn/packages/crates-io.scm
@@ -40,6 +40,35 @@ for massive key sets}.  It generates an @acronym{MPHF, minimal perfect hash
 functions} for a collection of hashable objects.")
     (license license:expat)))
 
+(define-public rust-gfa-0.6
+  (package
+    (name "rust-gfa")
+    (version "0.6.2")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "gfa" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0ghmy4r0324s6vvmj9nmh326346nkwm7nybnpcpswnjvf02b85gw"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-bstr" ,rust-bstr-0.2)
+        ("rust-bytemuck" ,rust-bytemuck-1)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-nom" ,rust-nom-5)
+        ("rust-regex" ,rust-regex-1)
+        ("rust-serde" ,rust-serde-1))
+        #:cargo-development-inputs
+        (("rust-criterion" ,rust-criterion-0.3))))
+    (home-page "https://github.com/chfi/rs-gfa")
+    (synopsis
+     "Library for working with graphs in the GFA (Graphical Fragment Assembly) format")
+    (description
+     "Library for working with graphs in the GFA (Graphical Fragment Assembly) format")
+    (license license:expat)))
+
 (define-public rust-handlegraph-0.7
   (package
     (name "rust-handlegraph")