diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-07-12 23:42:40 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-07-13 00:16:27 +0200 |
commit | 2829fb4a837af377355acf1198ced870f4001a3e (patch) | |
tree | 6ec520c1d9ee48be570404e1a56acf7424bb04f5 /gnu/packages/audio.scm | |
parent | c8045fa0526774a6b1da979baee2f98a7185dbad (diff) | |
download | guix-2829fb4a837af377355acf1198ced870f4001a3e.tar guix-2829fb4a837af377355acf1198ced870f4001a3e.tar.gz |
gnu: Add ttl2c.
* gnu/packages/audio.scm (ttl2c): New variable.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 0922c74788..b40d1472cb 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2783,6 +2783,38 @@ add functionality to support the needs of increasingly powerful audio software.") (license license:isc))) +(define-public ttl2c + (package + (name "ttl2c") + (version "1.0.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lvtk/ttl2c") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0aybx8i5i0sridi9130a3937xgmfmjkk8m48f9whvhlhbzwy3xbl")))) + (build-system waf-build-system) + (arguments + (list + #:tests? #false ;no check target + #:phases + `(modify-phases %standard-phases + (add-before 'configure 'setup-waf + (lambda* (#:key inputs #:allow-other-keys) + (let ((waf (assoc-ref inputs "python-waf"))) + (copy-file (string-append waf "/bin/waf") "waf"))))))) + (inputs (list boost)) + (native-inputs (list python-waf)) + (home-page "https://github.com/lvtk/ttl2c") + (synopsis "Turtle to C header conversion utility for LV2 plugins") + (description + "This package provides a conversion utility for LV2 Plugin developers to +generate C headers from Turtle files.") + (license license:gpl3+))) + (define-public lv2-mda-piano (package (name "lv2-mda-piano") |