me
/
guix
Archived
1
0
Fork 0

gnu: libsoundio: Fix indentation.

* gnu/packages/audio.scm (libsoundio): Fix indentation.
master
Mathieu Othacehe 2020-09-18 15:00:19 +02:00
parent bea98f9a0b
commit 66c83960a5
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 22 additions and 22 deletions

View File

@ -4470,33 +4470,33 @@ supports both of ID3v1/v2 and APEv2 tags.")
(define-public libsoundio (define-public libsoundio
(package (package
(name "libsoundio") (name "libsoundio")
(version "2.0.0") (version "2.0.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/andrewrk/libsoundio") (url "https://github.com/andrewrk/libsoundio")
(commit version))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"12l4rvaypv87vigdrmjz48d4d6sq4gfxf5asvnc4adyabxb73i4x")))) "12l4rvaypv87vigdrmjz48d4d6sq4gfxf5asvnc4adyabxb73i4x"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
`(#:tests? #f)) ; no tests included `(#:tests? #f)) ;no tests included
(inputs (inputs
`(("alsa-lib" ,alsa-lib) `(("alsa-lib" ,alsa-lib)
("jack" ,jack-1) ("jack" ,jack-1)
("pulseaudio" ,pulseaudio))) ("pulseaudio" ,pulseaudio)))
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
(home-page "http://libsound.io") (home-page "http://libsound.io")
(synopsis "C library for real-time audio input and output") (synopsis "C library for real-time audio input and output")
(description "libsoundio is a C library providing audio input and output. (description "@code{libsoundio} is a C library providing audio input and
The API is suitable for real-time software such as digital audio workstations output. The API is suitable for real-time software such as digital audio
as well as consumer software such as music players.") workstations as well as consumer software such as music players.")
(license license:expat))) (license license:expat)))
(define-public redkite (define-public redkite
(package (package