gnu: Add rust-permutohedron.

* gnu/packages/crates-io.scm (rust-permutohedron): New variable.
master
Efraim Flashner 2019-08-28 16:10:06 +03:00
parent 913096271f
commit 0e4448d138
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -860,6 +860,28 @@ the @code{take_while} predicate returned false after dropping the @code{by_ref}.
(license (list license:asl2.0
license:expat))))
(define-public rust-permutohedron
(package
(name "rust-permutohedron")
(version "0.2.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "permutohedron" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0b1pzh48j86v46wxngch6k1kx9cdw3jr3lwa86gd6jd4bmxzz1xn"))))
(build-system cargo-build-system)
(home-page "https://github.com/bluss/permutohedron")
(synopsis "Generate permutations of sequences")
(description
"Generate permutations of sequences. Either lexicographical order
permutations, or a minimal swaps permutation sequence implemented using Heap's
algorithm.")
(license (list license:asl2.0
license:expat))))
(define-public rust-pin-utils
(package
(name "rust-pin-utils")