diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-04-25 12:22:08 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-05-05 13:20:41 +0200 |
commit | 25078818e93c8b2bad1654953f36e539835eef16 (patch) | |
tree | b350447ed9cb49bf908c07c4304067476206c04d /gnu | |
parent | c3e71dcea52417d65f8c2aa162cfbf948bc59386 (diff) | |
download | guix-25078818e93c8b2bad1654953f36e539835eef16.tar.gz |
gnu: Add rust-untrusted-0.6.
* gnu/packages/crates-io.scm (rust-untrusted-0.6): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 1aed6ae43b..886cc6fce1 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -25185,6 +25185,18 @@ whitespace from a string.") untrusted inputs in Rust.") (license license:isc))) +(define-public rust-untrusted-0.6 + (package/inherit rust-untrusted-0.7 + (name "rust-untrusted") + (version "0.6.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "untrusted" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0byf88b7ca1kb5aap8f6npp6xncvg95dnma8ipmnmd4n9r5izkam")))))) + (define-public rust-url-2.1 (package (name "rust-url") |