diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
commit | 2814b4bcf59bab12f4b168349d45b86cb71d8cfd (patch) | |
tree | 090a99d5bc3e060954ad55257c1be8f102ca0ff9 | |
parent | 0de861a70ac808cef373d738aba928435c78180e (diff) | |
download | guix-techchud-2814b4bcf59bab12f4b168349d45b86cb71d8cfd.tar.gz guix-techchud-2814b4bcf59bab12f4b168349d45b86cb71d8cfd.tar.bz2 guix-techchud-2814b4bcf59bab12f4b168349d45b86cb71d8cfd.zip |
add rust-osmesa-sys@0.0.5
-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))) + |