mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: rust-ogg-0.8: Move to (gnu packages crates-audio).
* gnu/packages/crates-io.scm (rust-ogg-0.8): Move from here ... * gnu/packages/crates-audio.scm: ... to here. Change-Id: I7afdeaffd150ed1f1fc5b34552b2993e8c07398f
This commit is contained in:
parent
cf4fde6820
commit
1c3f36c4d2
2 changed files with 26 additions and 26 deletions
|
@ -424,6 +424,32 @@ (define-public rust-lv2-worker-0.1
|
|||
(description "This package provides a Rust LV2 work offloading library.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-ogg-0.8
|
||||
(package
|
||||
(name "rust-ogg")
|
||||
(version "0.8.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "ogg" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0vjxmqcv9252aj8byy70iy2krqfjknfcxg11lcyikj11pzlb8lb9"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:cargo-inputs
|
||||
`(("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-bytes" ,rust-bytes-0.4)
|
||||
("rust-futures" ,rust-futures-0.1)
|
||||
("rust-tokio-io" ,rust-tokio-io-0.1))
|
||||
#:cargo-development-inputs
|
||||
`(("rust-rand" ,rust-rand-0.3))))
|
||||
(home-page "https://github.com/RustAudio/ogg")
|
||||
(synopsis "Ogg container decoder and encoder written in pure Rust")
|
||||
(description "An Ogg decoder and encoder. Implements the xiph.org Ogg
|
||||
spec in pure Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
;;;
|
||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||
;;; of a merge conflict, place them above by existing packages with similar
|
||||
|
|
|
@ -53765,32 +53765,6 @@ (define-public rust-odds-0.2
|
|||
("rust-memchr" ,rust-memchr-2)
|
||||
("rust-quickcheck" ,rust-quickcheck-0.4))))))
|
||||
|
||||
(define-public rust-ogg-0.8
|
||||
(package
|
||||
(name "rust-ogg")
|
||||
(version "0.8.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "ogg" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0vjxmqcv9252aj8byy70iy2krqfjknfcxg11lcyikj11pzlb8lb9"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #:cargo-inputs
|
||||
`(("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-bytes" ,rust-bytes-0.4)
|
||||
("rust-futures" ,rust-futures-0.1)
|
||||
("rust-tokio-io" ,rust-tokio-io-0.1))
|
||||
#:cargo-development-inputs
|
||||
`(("rust-rand" ,rust-rand-0.3))))
|
||||
(home-page "https://github.com/RustAudio/ogg")
|
||||
(synopsis "Ogg container decoder and encoder written in pure Rust")
|
||||
(description "An Ogg decoder and encoder. Implements the xiph.org Ogg
|
||||
spec in pure Rust.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-omnipath-0.1
|
||||
(package
|
||||
(name "rust-omnipath")
|
||||
|
|
Loading…
Reference in a new issue