From f4d2be13afd694c2d5e069235a20fafb6bce66e6 Mon Sep 17 00:00:00 2001 From: Valentin Ignatev Date: Thu, 16 Jan 2020 17:31:15 +0300 Subject: [PATCH 043/275] gnu: Add rust-objc-exception-0.1. * gnu/packages/crates-io.scm (rust-objc-exception-0.1): New variable. --- gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 7fea3dd852..2bcf8436c4 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7454,6 +7454,32 @@ combinators library.") (properties '((hidden? . #t))) (license (list license:expat license:asl2.0)))) +(define-public rust-objc-exception-0.1 + (package + (name "rust-objc-exception") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "objc-exception" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "191cmdmlypp6piw67y4m8y5swlxf5w0ss8n1lk5xd2l1ans0z5xd")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-development-inputs + (("rust-cc" ,rust-cc-1.0)))) + (home-page + "http://github.com/SSheldon/rust-objc-exception") + (synopsis + "Rust interface for Objective-C's throw and try/catch statements") + (description + "Rust interface for Objective-C's throw and try/catch statements.") + (license license:expat))) + (define-public rust-objc-test-utils-0.0 (package (name "rust-objc-test-utils") -- 2.25.0