diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-08 15:36:57 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-08 15:43:17 -0500 |
commit | 8d79f78e3eb15e8f4075ebf0643706333c9391eb (patch) | |
tree | 4176ace41ec1286f92175062148b758f25ef6b8c /gnu/packages/rust-apps.scm | |
parent | ace43deb2e930cb619c407c12ef569ea7539f87e (diff) | |
download | guix-8d79f78e3eb15e8f4075ebf0643706333c9391eb.tar.gz |
gnu: Add rust-cbindgen-0.20.
* gnu/packages/rust-apps.scm (rust-cbindgen-0.20): New variable.
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r-- | gnu/packages/rust-apps.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index b8cb06af64..f4ef2f103e 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -1075,6 +1075,19 @@ rebase.") (base32 "006rn3fn4njayjxr2vd24g1awssr9i3894nbmfzkybx07j728vav")))))) +(define-public rust-cbindgen-0.20 + (package + (inherit rust-cbindgen-0.24) + (name "rust-cbindgen") + (version "0.20.0") + (source (origin + (method url-fetch) + (uri (crate-uri "cbindgen" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1p67vvjkxh07yfizfkvm6bjlv2bywrnl57hshcsz9h2x2qxrgqsi")))))) + (define-public rust-cbindgen-0.19 (package (inherit rust-cbindgen) |