gnu: libopenshot-audio: Use G-expressions.
* gnu/packages/audio.scm (libopenshot-audio)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
120f1721b2
commit
182be30fb1
1 changed files with 7 additions and 6 deletions
|
@ -147,8 +147,8 @@
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system waf)
|
#:use-module (guix build-system waf)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
|
#:use-module (guix git-download)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
@ -5230,11 +5230,12 @@ bluetooth profile.")
|
||||||
libxinerama
|
libxinerama
|
||||||
libxcursor))
|
libxcursor))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;there are no tests
|
(list
|
||||||
#:configure-flags
|
#:tests? #f ; there are no tests
|
||||||
(list (string-append "-DCMAKE_CXX_FLAGS=-I"
|
#:configure-flags
|
||||||
(assoc-ref %build-inputs "freetype")
|
#~(list (string-append "-DCMAKE_CXX_FLAGS=-I"
|
||||||
"/include/freetype2"))))
|
#$(this-package-input "freetype")
|
||||||
|
"/include/freetype2"))))
|
||||||
(home-page "https://openshot.org")
|
(home-page "https://openshot.org")
|
||||||
(synopsis "Audio editing and playback for OpenShot")
|
(synopsis "Audio editing and playback for OpenShot")
|
||||||
(description "OpenShot Audio Library (libopenshot-audio) allows
|
(description "OpenShot Audio Library (libopenshot-audio) allows
|
||||||
|
|
Reference in a new issue