gnu: libopenshot-audio: Use G-expressions.

* gnu/packages/audio.scm (libopenshot-audio)[arguments]:
Rewrite as G-expressions.
This commit is contained in:
Tobias Geerinckx-Rice 2023-07-16 02:00:01 +02:00
parent 120f1721b2
commit 182be30fb1
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -147,8 +147,8 @@ (define-module (gnu packages audio)
#:use-module (guix build-system trivial)
#:use-module (guix build-system waf)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
@ -5230,10 +5230,11 @@ (define-public libopenshot-audio
libxinerama
libxcursor))
(arguments
`(#:tests? #f ;there are no tests
(list
#:tests? #f ; there are no tests
#:configure-flags
(list (string-append "-DCMAKE_CXX_FLAGS=-I"
(assoc-ref %build-inputs "freetype")
#~(list (string-append "-DCMAKE_CXX_FLAGS=-I"
#$(this-package-input "freetype")
"/include/freetype2"))))
(home-page "https://openshot.org")
(synopsis "Audio editing and playback for OpenShot")