mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 12:47:33 -05:00
gnu: Add rust-quine-mc-cluskey-0.2.
* gnu/packages/crates-io.scm (rust-quine-mc-cluskey-0.2): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
8882a964af
commit
bc4fc6b898
1 changed files with 25 additions and 0 deletions
|
@ -43039,6 +43039,31 @@ (define-public rust-quickcheck-macros-0.8
|
|||
#:cargo-development-inputs
|
||||
(("rust-quickcheck" ,rust-quickcheck-0.8))))))
|
||||
|
||||
(define-public rust-quine-mc-cluskey-0.2
|
||||
(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)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-quickcheck" ,rust-quickcheck-0.3))))
|
||||
(home-page "https://github.com/oli-obk/quine-mc_cluskey")
|
||||
(synopsis
|
||||
"Rust implementation of the Quine-McCluskey algorithm and Petrick's method")
|
||||
(description
|
||||
"This package provides a Rust implementation of the Quine-McCluskey algorithm
|
||||
and Petrick's method, an algorithm to automatically minimize boolean expressions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-quote-1
|
||||
(package
|
||||
(name "rust-quote")
|
||||
|
|
Loading…
Reference in a new issue