diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-10 09:01:22 +0200 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-10 22:41:34 +0200 |
| commit | 8f941dd24fdf41656175a635deaee79ca0242101 (patch) | |
| tree | e8b3f8fc0db14ed7df8a20c37fad8b92acc32126 | |
| parent | d72267863382041b84a9712eea354882be72ef55 (diff) | |
gnu: Add infamous-plugins.
* gnu/packages/audio.scm (infamous-plugins): New variable.
| -rw-r--r-- | gnu/packages/audio.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ff09c69e29d..4d1505a59f6 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm | |||
| @@ -338,6 +338,37 @@ tools (analyzer, mono/stereo tools, crossovers).") | |||
| 338 | ;; The plugins are released under LGPLv2.1+ | 338 | ;; The plugins are released under LGPLv2.1+ |
| 339 | (license (list license:lgpl2.1+ license:gpl2+)))) | 339 | (license (list license:lgpl2.1+ license:gpl2+)))) |
| 340 | 340 | ||
| 341 | (define-public infamous-plugins | ||
| 342 | (package | ||
| 343 | (name "infamous-plugins") | ||
| 344 | (version "0.2.02") | ||
| 345 | (source (origin | ||
| 346 | (method url-fetch) | ||
| 347 | (uri (string-append "https://github.com/ssj71/infamousPlugins/" | ||
| 348 | "archive/v" version ".tar.gz")) | ||
| 349 | (file-name (string-append name "-" version ".tar.gz")) | ||
| 350 | (sha256 | ||
| 351 | (base32 | ||
| 352 | "0qm3ak07vc1l3f5c3c2lq9gkfknlxwn8ks03cysw1pk8hj7dwnv6")))) | ||
| 353 | (build-system cmake-build-system) | ||
| 354 | ;; There are no tests | ||
| 355 | (arguments `(#:tests? #f)) | ||
| 356 | (inputs | ||
| 357 | `(("cairo" ,cairo) | ||
| 358 | ("fftwf" ,fftwf) | ||
| 359 | ("lv2" ,lv2) | ||
| 360 | ("ntk" ,ntk) | ||
| 361 | ("zita-resampler" ,zita-resampler))) | ||
| 362 | (native-inputs | ||
| 363 | `(("pkg-config" ,pkg-config))) | ||
| 364 | (home-page "http://ssj71.github.io/infamousPlugins") | ||
| 365 | (synopsis "LV2 plugins for live use") | ||
| 366 | (description | ||
| 367 | "The infamous plugins are a collection of LV2 audio plugins for live | ||
| 368 | performances. The plugins include a cellular automaton synthesizer, an | ||
| 369 | envelope follower, distortion effects, tape effects and more.") | ||
| 370 | (license license:gpl2+))) | ||
| 371 | |||
| 341 | (define-public csound | 372 | (define-public csound |
| 342 | (package | 373 | (package |
| 343 | (name "csound") | 374 | (name "csound") |
