diff options
author | Steve George <steve@futurile.net> | 2023-10-23 23:21:45 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-24 14:53:32 +0300 |
commit | 52b609f5b93ce125ec4e4d64afc220fbd03eb59f (patch) | |
tree | d5caab642644294396fb65f5d6328c8010119ba7 | |
parent | 5e140b7839928ae00b8bf5e693e7729c9be1f3af (diff) | |
download | guix-52b609f5b93ce125ec4e4d64afc220fbd03eb59f.tar guix-52b609f5b93ce125ec4e4d64afc220fbd03eb59f.tar.gz |
gnu: Add rust-symphonia-format-ogg-0.4.
* gnu/packages/crates-io.scm (rust-symphonia-format-ogg-0.4): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 114e00c948..a3c808af09 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -70511,6 +70511,30 @@ that supports a wide range of audio formats. This package contains an ISO/MP4 demuxer.") (license license:mpl2.0))) +(define-public rust-symphonia-format-ogg-0.4 + (package + (name "rust-symphonia-format-ogg") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "symphonia-format-ogg" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "06d5327m4yk8a6yq7zzyiv2sbkwnjq28dz9cagndz6m7i1r3bcnp")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-log" ,rust-log-0.4) + ("rust-symphonia-core" ,rust-symphonia-core-0.4) + ("rust-symphonia-metadata" ,rust-symphonia-metadata-0.4) + ("rust-symphonia-utils-xiph" ,rust-symphonia-utils-xiph-0.4)))) + (home-page "https://github.com/pdeljanov/Symphonia") + (synopsis "Pure Rust OGG demuxer, part of Symphonia") + (description + "Symphonia is a pure Rust decoding and media demuxing library that +supports a wide range of audio formats. This package is an OGG demuxer.") + (license license:mpl2.0))) + (define-public rust-symphonia-utils-xiph-0.4 (package (name "rust-symphonia-utils-xiph") |