diff options
-rw-r--r-- | unlustig.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index d5bbeef..b619bea 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1778,3 +1778,23 @@ See winapi for types and constants.") See winapi for types and constants.") (license license:expat))) +(define-public rust-osmesa-sys-0.0.5 + (package + (name "rust-osmesa-sys") + (version "0.0.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "osmesa-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "179nqpaxaz1x48gs365v5cmwm76849n2rpw0q92ms9gsf26jsp72")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2) + ("rust-shared-library" ,rust-shared-library-0.1)))) + (home-page "https://github.com/Daggerbot/osmesa-rs.git") + (synopsis "OSMesa library bindings for Rust") + (description "This package provides OSMesa library bindings for Rust.") + (license license:cc0))) + |