mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: libvisual-plugins: Reformat with 'guix style'.
* gnu/packages/gstreamer.scm (libvisual-plugins): Reformat package using 'guix style'. Change-Id: I91cb02b22bc50c71ad314d2a48207a77e3700a41
This commit is contained in:
parent
a2f81c1b9d
commit
af8ad9148f
1 changed files with 16 additions and 21 deletions
|
@ -273,30 +273,26 @@ (define-public libvisual-plugins
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(git-reference
|
(url "https://github.com/Libvisual/libvisual")
|
||||||
(url "https://github.com/Libvisual/libvisual")
|
(commit (string-append name "-" version))))
|
||||||
(commit (string-append name "-" version))))
|
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "02xwakwkqjsznc03pjlb6hcv1li1gw3r8xvyswqsm4msix5xq18a"))))
|
(base32 "02xwakwkqjsznc03pjlb6hcv1li1gw3r8xvyswqsm4msix5xq18a"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags (list "--disable-gstreamer-plugin"
|
||||||
(list
|
"--disable-oinksie"
|
||||||
"--disable-gstreamer-plugin"
|
"--disable-corona"
|
||||||
"--disable-oinksie"
|
"--disable-gforce"
|
||||||
"--disable-corona"
|
(string-append "--with-plugins-base-dir="
|
||||||
"--disable-gforce"
|
(assoc-ref %outputs "out")
|
||||||
(string-append "--with-plugins-base-dir=" (assoc-ref %outputs "out")
|
"/lib/libvisual-0.4"))
|
||||||
"/lib/libvisual-0.4"))
|
#:phases (modify-phases %standard-phases
|
||||||
#:phases
|
;; The package is in a sub-dir of this repo.
|
||||||
(modify-phases %standard-phases
|
(add-after 'unpack 'chdir
|
||||||
;; The package is in a sub-dir of this repo.
|
(lambda _
|
||||||
(add-after 'unpack 'chdir
|
(chdir "libvisual-plugins"))))))
|
||||||
(lambda _
|
|
||||||
(chdir "libvisual-plugins")
|
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list bison
|
(list bison
|
||||||
flex
|
flex
|
||||||
|
@ -312,8 +308,7 @@ (define-public libvisual-plugins
|
||||||
jack-2
|
jack-2
|
||||||
libx11
|
libx11
|
||||||
libxext))
|
libxext))
|
||||||
(propagated-inputs
|
(propagated-inputs (list libvisual))
|
||||||
(list libvisual))
|
|
||||||
(synopsis "Audio visualisation library")
|
(synopsis "Audio visualisation library")
|
||||||
(description "Libvisual is a library that acts as a middle layer between
|
(description "Libvisual is a library that acts as a middle layer between
|
||||||
applications that want audio visualisation and audio visualisation plugins.")
|
applications that want audio visualisation and audio visualisation plugins.")
|
||||||
|
|
Loading…
Reference in a new issue