diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-10-23 09:45:50 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-10-23 10:30:59 +0300 |
commit | 71d111f5410f1b558c34491013fbb4378d87828a (patch) | |
tree | d2099f9d1634f5ca902f426c45793c35bad5ce88 /gnu/packages | |
parent | 26be7f23f8cc2fea01d06e251535fc40f23726e4 (diff) | |
download | patches-71d111f5410f1b558c34491013fbb4378d87828a.tar patches-71d111f5410f1b558c34491013fbb4378d87828a.tar.gz |
gnu: Add rust-cloudabi-0.0.
* gnu/packages/rust-cbindgen.scm (rust-cloudabi-0.0): New hidden
variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/rust-cbindgen.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/rust-cbindgen.scm b/gnu/packages/rust-cbindgen.scm index c7d3133489..36d4b5e8d3 100644 --- a/gnu/packages/rust-cbindgen.scm +++ b/gnu/packages/rust-cbindgen.scm @@ -149,3 +149,23 @@ depending on a large number of #[cfg] parameters. Structured like an Command Line Argument Parser.") (properties '((hidden? . #t))) (license license:expat))) + +(define rust-cloudabi-0.0 + (package + (name "rust-cloudabi") + (version "0.0.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "cloudabi" version)) + (file-name (string-append name "-" version ".crate")) + (sha256 + (base32 + "0kxcg83jlihy0phnd2g8c2c303px3l2p3pkjz357ll6llnd5pz6x")))) + (build-system cargo-build-system) + (home-page "https://nuxi.nl/cloudabi/") + (synopsis "Low level interface to CloudABI") + (description + "Low level interface to CloudABI. Contains all syscalls and related types.") + (properties '((hidden? . #t))) + (license license:bsd-2))) |