diff options
author | Mark H Weaver <mhw@netris.org> | 2020-08-17 18:13:29 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2020-09-07 15:33:02 -0400 |
commit | cc2849bc8c76883d4cebc358c72f11114c51ab9a (patch) | |
tree | bc62b6db78a83c82202702adde1e6c04d29a4e3b /gnu | |
parent | edc55ce9d6317f5f6ad5c4aedcff06d5082694a3 (diff) |
gnu: Add rust-cbindgen@0.14.1.
* gnu/packages/rust-apps.scm (rust-cbindgen-0.14): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/rust-apps.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index d0960226c5..76be9acad1 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2020 Leo Famulari <leo@famulari.name> +;;; Copyright © 2020 Mark H Weaver <mhw@netris.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -292,6 +293,21 @@ gitignore rules.") "This package provides a tool for generating C/C++ bindings to Rust code.") (license license:mpl2.0))) +(define-public rust-cbindgen-0.14 + (package + (inherit rust-cbindgen) + (name "rust-cbindgen") + (version "0.14.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "cbindgen" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1ppwqbzydxlg9a24lynzfk60xrvqw4k31mpz1wrk6lbf88zf8nxi")))))) + (define-public rust-cbindgen-0.12 (package (inherit rust-cbindgen) |