diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-09-18 15:00:19 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-09-18 15:00:19 +0200 |
commit | 66c83960a5cc5736f1c9aea581136f1ca7055335 (patch) | |
tree | e7ef67a2e6cd1d72f10696117259c1912eae75aa /gnu/packages/audio.scm | |
parent | bea98f9a0b40f4b86103e195bf2fcd4efbdb8c84 (diff) | |
download | guix-66c83960a5cc5736f1c9aea581136f1ca7055335.tar guix-66c83960a5cc5736f1c9aea581136f1ca7055335.tar.gz |
gnu: libsoundio: Fix indentation.
* gnu/packages/audio.scm (libsoundio): Fix indentation.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ea6c982075..45431be2b1 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -4470,33 +4470,33 @@ supports both of ID3v1/v2 and APEv2 tags.") (define-public libsoundio (package - (name "libsoundio") - (version "2.0.0") - (source + (name "libsoundio") + (version "2.0.0") + (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/andrewrk/libsoundio") - (commit version))) + (url "https://github.com/andrewrk/libsoundio") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 - "12l4rvaypv87vigdrmjz48d4d6sq4gfxf5asvnc4adyabxb73i4x")))) - (build-system cmake-build-system) - (arguments - `(#:tests? #f)) ; no tests included - (inputs - `(("alsa-lib" ,alsa-lib) - ("jack" ,jack-1) - ("pulseaudio" ,pulseaudio))) - (native-inputs - `(("pkg-config" ,pkg-config))) - (home-page "http://libsound.io") - (synopsis "C library for real-time audio input and output") - (description "libsoundio is a C library providing audio input and output. -The API is suitable for real-time software such as digital audio workstations -as well as consumer software such as music players.") - (license license:expat))) + (base32 + "12l4rvaypv87vigdrmjz48d4d6sq4gfxf5asvnc4adyabxb73i4x")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ;no tests included + (inputs + `(("alsa-lib" ,alsa-lib) + ("jack" ,jack-1) + ("pulseaudio" ,pulseaudio))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://libsound.io") + (synopsis "C library for real-time audio input and output") + (description "@code{libsoundio} is a C library providing audio input and +output. The API is suitable for real-time software such as digital audio +workstations as well as consumer software such as music players.") + (license license:expat))) (define-public redkite (package |