add artyFX: A LV2 plugin bundle of effects
This commit is contained in:
parent
0db1bb5bda
commit
27d57966f5
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, fetchgit, cairomm, cmake, jack2, libpthreadstubs, libXdmcp, libxshmfence, libsndfile, lv2, ntk, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "artyFX-git-${version}";
|
||||||
|
version = "2015-05-07";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/harryhaaren/openAV-ArtyFX.git";
|
||||||
|
rev = "3a8cb9a5e4ffaf27a497a31cc9cd6f2e79622d5b";
|
||||||
|
sha256 = "2e3f6ab6f829c0ec177e85f4e419286616cf35fb7303445caa09d3438cac27d5";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cairomm cmake jack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk pkgconfig ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://openavproductions.com/artyfx/;
|
||||||
|
description = "A LV2 plugin bundle of artistic realtime effects";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -560,6 +560,10 @@ let
|
||||||
|
|
||||||
arp-scan = callPackage ../tools/misc/arp-scan { };
|
arp-scan = callPackage ../tools/misc/arp-scan { };
|
||||||
|
|
||||||
|
artyFX = callPackage ../applications/audio/artyFX {
|
||||||
|
inherit (xlibs) libpthreadstubs;
|
||||||
|
};
|
||||||
|
|
||||||
ascii = callPackage ../tools/text/ascii { };
|
ascii = callPackage ../tools/text/ascii { };
|
||||||
|
|
||||||
asymptote = callPackage ../tools/graphics/asymptote {
|
asymptote = callPackage ../tools/graphics/asymptote {
|
||||||
|
|
Loading…
Reference in New Issue