diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index d0960226c53715c23e3d835a1f6f41b649aaba4a..76be9acad181621ab4097de184ed02a6cb43f52f 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 @@ (define-public rust-cbindgen "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)