diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2015-02-05 22:40:30 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-02-11 23:41:37 +0100 |
commit | 332aad1b0038d30db7e80af225e9079629fd061f (patch) | |
tree | e0cb4295c81edbca973995990573e36a3aa604d0 /gnu | |
parent | 5279eb6fceb56019e279514c9e5495c11afd194b (diff) | |
download | guix-332aad1b0038d30db7e80af225e9079629fd061f.tar.gz guix-332aad1b0038d30db7e80af225e9079629fd061f.zip |
gnu: Add lilv.
* gnu/packages/audio.scm (lilv): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/audio.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 1105ec2eec..8a782c1ca9 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -160,6 +160,35 @@ synchronous execution of all clients, and low latency operation.") implementation of the Open Sound Control (OSC) protocol.") (license license:lgpl2.1+))) +(define-public lilv + (package + (name "lilv") + (version "0.20.0") + (source (origin + (method url-fetch) + (uri (string-append "http://download.drobilla.net/lilv-" + version + ".tar.bz2")) + (sha256 + (base32 + "0aj2plkx56iar8vzjbq2l7hi7sp0ml99m0h44rgwai2x4vqkk2j2")))) + (build-system waf-build-system) + (arguments `(#:tests? #f)) ; no check target + (inputs + `(("lv2" ,lv2) + ("serd" ,serd) + ("sord" ,sord) + ("sratom" ,sratom))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://drobilla.net/software/lilv/") + (synopsis "Library to simplify use of LV2 plugins in applications") + (description + "Lilv is a C library to make the use of LV2 plugins as simple as possible +for applications. Lilv is the successor to SLV2, rewritten to be +significantly faster and have minimal dependencies.") + (license license:isc))) + (define-public lv2 (package (name "lv2") |