[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61818] [PATCH 05/14] gnu: Add rust-librespot-tremor.
From: |
Steve George |
Subject: |
[bug#61818] [PATCH 05/14] gnu: Add rust-librespot-tremor. |
Date: |
Sun, 26 Feb 2023 17:09:19 +0000 |
* gnu/packages/crates-io.scm (rust-librespot-tremor): New variable.
---
Had to set the package to skip build. It errors saying rust-ogg-sys
can't be built, but it does. Unsure how to debug or fix.
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 257f35e147..626dfafa8e 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -30681,6 +30681,32 @@ (define-public rust-libradicl-0.4
single-cell and single-nucleus sequencing data.")
(license license:bsd-3)))
+(define-public rust-librespot-tremor-0.2
+ (package
+ (name "rust-librespot-tremor")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "librespot-tremor" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1zmld16zawvn7ayrf318lwdr2d7awn4bk9s0d6kpim0mz6zjbxcp"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t ; errors building ogg-sys - though ogg-sys builds
+ #:cargo-inputs
+ (("rust-libc" ,rust-libc-0.2)
+ ("rust-ogg-sys" ,rust-ogg-sys-0.0.9))
+ #:cargo-development-inputs
+ (("rust-cc" ,rust-cc-1)
+ ("rust-pkg-config" ,rust-pkg-config-0.3))))
+ (home-page "https://github.com/librespot-org/librespot-tremor")
+ (synopsis "Rust bindings for Tremor, a fixed point Vorbis decoder")
+ (description "Rust bindings for Tremor, a fixed point decoder for the
+Vorbis audio format. Used by platforms that can't do floating point maths.")
+ (license license:expat)))
+
(define-public rust-libsqlite3-sys-0.23
(package
(name "rust-libsqlite3-sys")
--
2.39.1
- [bug#61818] [PATCH 01/14] gnu: Add rust-ogg-sys., (continued)
- [bug#61818] [PATCH 01/14] gnu: Add rust-ogg-sys., Steve George, 2023/02/26
- [bug#61818] [PATCH 02/14] gnu: Add rust-vorbis-sys., Steve George, 2023/02/26
- [bug#61818] [PATCH 03/14] gnu: Add rust-vorbisfile-sys., Steve George, 2023/02/26
- [bug#61818] [PATCH 10/14] gnu: Add rust-rental., Steve George, 2023/02/26
- [bug#61818] [PATCH 07/14] gnu: Add rust-parking-lot-core-0.2., Steve George, 2023/02/26
- [bug#61818] [PATCH 08/14] gnu: Add rust-parking-lot-0.4., Steve George, 2023/02/26
- [bug#61818] [PATCH 13/14] gnu: Add rust-ogg., Steve George, 2023/02/26
- [bug#61818] [PATCH 12/14] gnu: Add rust-alto., Steve George, 2023/02/26
- [bug#61818] [PATCH 06/14] gnu: Add rust-owning-ref-0.3., Steve George, 2023/02/26
- [bug#61818] [PATCH 09/14] gnu: Add rust-rental-impl., Steve George, 2023/02/26
- [bug#61818] [PATCH 05/14] gnu: Add rust-librespot-tremor.,
Steve George <=
- [bug#61818] [PATCH 14/14] gnu: Add rust-lewton., Steve George, 2023/02/26
- [bug#61818] [PATCH 11/14] gnu: Add rust-al-sys., Steve George, 2023/02/26
- [bug#61818] [PATCH 04/14] gnu: Add rust-vorbis., Steve George, 2023/02/26