guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 64/86] gnu: Add rust-quine-mc-cluskey.


From: ng0
Subject: [PATCH 64/86] gnu: Add rust-quine-mc-cluskey.
Date: Tue, 3 Jan 2017 23:36:20 +0000

* gnu/packages/rust.scm (rust-quine-mc-cluskey): New variable.
---
 gnu/packages/rust.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index dbb61cdf0..7c326f3a1 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -1765,3 +1765,26 @@ finite automata and guarantees linear time matching on 
all inputs.")
      "Logging implementation for @code{log} which is configured via an
 environment variable.")
     (license (list license:expat license:asl2.0))))
+
+(define-public rust-quine-mc-cluskey
+  (package
+    (name "rust-quine-mc-cluskey")
+    (version "0.2.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "quine-mc_cluskey" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0iazdlwffhrlksb8yhhs1prgwpa68rwjwqm4v26hr9hrswarcn07"))))
+    (build-system cargo-build-system)
+    (inputs
+     `(("rust-quickcheck" ,rust-quickcheck "src")))
+    (home-page "https://github.com/oli-obk/quine-mc_cluskey";)
+    (synopsis "Implementation of the Quine-McCluskey algorithm and Petrick's 
method")
+    (description
+     "@code{quine-mc-cluskey} is the Rust implementation of the
+Quine-McCluskey algorithm and Petrick's method.")
+    (license license:expat)))
-- 
2.11.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]