diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-03-18 22:14:46 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-03-19 22:33:21 +0200 |
commit | 8ae8478a711acb866b03099d2ed8577446c50cfb (patch) | |
tree | 0916229d0b09d42f93319aae316d3a93281ff03f /gnu | |
parent | 44b748e4f5dd2b026a861f2b6411c74a64863b28 (diff) | |
download | patches-8ae8478a711acb866b03099d2ed8577446c50cfb.tar patches-8ae8478a711acb866b03099d2ed8577446c50cfb.tar.gz |
gnu: Add rust-ord-subset-3.
* gnu/packages/crates-io.scm (rust-ord-subset-3): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b29b11cb81..70ea6a515d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -11287,6 +11287,27 @@ system for OpenSSL.") "Extra FFI bindings to OpenSSL that require a C shim.") (license license:expat))) +(define-public rust-ord-subset-3 + (package + (name "rust-ord-subset") + (version "3.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "ord-subset" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1vvb6zmz279nb59dki7kbsvixbk8zpg2gxvgcpsjfnxg9ik19knp")))) + (build-system cargo-build-system) + (home-page "https://github.com/emerentius/ord_subset") + (synopsis "Tools for working with the Ord subset of certain PartialOrd types") + (description + "This package provides tools for working with the Ord subset of certain +PartialOrd types, like floats.") + (license (list license:expat license:asl2.0)))) + (define-public rust-ordered-float-1.0 (package (name "rust-ordered-float") |