me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cgl-0.3.

* gnu/packages/crates-io.scm (rust-cgl-0.3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-01-20 01:15:57 +03:00 committed by Efraim Flashner
parent b6d435dacb
commit 84ab590cc0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -1747,6 +1747,28 @@ depending on a large number of #[cfg] parameters. Structured like an
(license (list license:asl2.0
license:expat))))
(define-public rust-cgl-0.3
(package
(name "rust-cgl")
(version "0.3.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "cgl" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1zs7skrsyrsm759vfy2cygkx52fx91b567a12bpaz1sf4d8hbv8c"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ; only available on macOS
#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
(home-page "https://github.com/servo/cgl-rs")
(synopsis "Rust bindings for CGL on Mac")
(description "Rust bindings for CGL on Mac.")
(license (list license:expat license:asl2.0))))
(define-public rust-ci-info-0.3
(package
(name "rust-ci-info")