lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 29 lines 849 B view raw
1{ stdenv, fetchurl, boost, libX11, mesa, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile }: 2 3stdenv.mkDerivation rec { 4 name = "zam-plugins-${version}"; 5 version = "3.5"; 6 7 src = fetchurl { 8 url = "https://github.com/zamaudio/zam-plugins/archive/${version}.tar.gz"; 9 sha256 = "0icdrs4vaaj8gqi76jkkx5yk9h3agipa11cyb5h52y814q6mx6vm"; 10 }; 11 12 buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; 13 14 patchPhase = '' 15 patchShebangs ./libs/generate-ttl.sh 16 ''; 17 18 makeFlags = [ 19 "PREFIX=$(out)" 20 ]; 21 22 meta = with stdenv.lib; { 23 homepage = http://www.zamaudio.com/?p=976; 24 description = "A collection of LV2/LADSPA/VST/JACK audio plugins by ZamAudio"; 25 license = licenses.gpl2Plus; 26 maintainers = [ maintainers.magnetophon ]; 27 platforms = platforms.linux; 28 }; 29}