diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2020-09-20 11:41:20 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2020-10-12 11:42:00 +0530 |
commit | 63ab8fe71157a11a6b7eaba51eb1dc7867ed1202 (patch) | |
tree | a894355dd35b9d102349910aa14012fa46c3e89c /gnu | |
parent | db52e76d679985e8171a906372edb82fdc3f38c5 (diff) | |
download | guix-63ab8fe71157a11a6b7eaba51eb1dc7867ed1202.tar.gz |
gnu: Add rust-cty-0.2.
* gnu/packages/crates-io.scm (rust-cty-0.2): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 23fcd114cd..f8b0de5060 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -5657,6 +5657,25 @@ Transparency logs for use with sct crate.") "This package provides an easy Ctrl-C handler for Rust projects.") (license (list license:expat license:asl2.0)))) +(define-public rust-cty-0.2 + (package + (name "rust-cty") + (version "0.2.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "cty" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1qvkdnkxmd7g6fwhmv26zxqi0l7b9cd4d7h1knylvjyh43bc04vk")))) + (build-system cargo-build-system) + (home-page "https://github.com/japaric/cty") + (synopsis "Type aliases to C types") + (description "This package provides type aliases to C types like c_int for +use with bindgen.") + (license (list license:expat license:asl2.0)))) + (define-public rust-curl-sys-0.4 (package (name "rust-curl-sys") |