diff options
author | Valentin Ignatev <valentignatev@gmail.com> | 2020-01-16 17:59:41 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-17 23:07:41 +0200 |
commit | e8166e795425b1060bab67b279ccd7619aa7920e (patch) | |
tree | 5c32688884d9514dea2b1a7154a7de190044f41a | |
parent | 8a062f6767e11726aef5bbf4b3ff54cb7e1a483f (diff) |
gnu: Add rust-syntex-pos-0.58.
* gnu/packages/crates-io.scm (rust-syntex-pos-0.58): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 101e346ffe..06b76f1fee 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -12883,6 +12883,28 @@ cryptographic implementations.") (properties '((hidden? . #t))) (license license:expat))) +(define-public rust-syntex-pos-0.58 + (package + (name "rust-syntex-pos") + (version "0.58.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "syntex_pos" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0iqhircpr723da1g97xrrj8smqqz3gxw91cf03sckasjzri4gb8k")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-rustc-serialize" ,rust-rustc-serialize-0.3)))) + (home-page "https://github.com/serde-rs/syntex") + (synopsis "Backport of libsyntax_pos") + (description "This package provides a backport of @code{libsyntax_pos}.") + (license (list license:expat license:asl2.0)))) + (define-public rust-sysctl-0.4 (package (name "rust-sysctl") |