lol
0
fork

Configure Feed

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

at v192 25 lines 677 B view raw
1{ stdenv, fetchFromGitHub, lv2 }: 2 3stdenv.mkDerivation rec { 4 name = "mod-distortion-${version}"; 5 version = "git-2015-05-18"; 6 7 src = fetchFromGitHub { 8 owner = "portalmod"; 9 repo = "mod-distortion"; 10 rev = "0cdf186abc2a9275890b57057faf5c3f6d86d84a"; 11 sha256 = "1wmxgpcdcy9m7j78yq85824if0wz49wv7mw13bj3sw2s87dcmw19"; 12 }; 13 14 buildInputs = [ lv2 ]; 15 16 installFlags = [ "LV2_PATH=$out/lib/lv2" ]; 17 18 meta = with stdenv.lib; { 19 homepage = https://github.com/portalmod/mod-distortion; 20 description = "Analog distortion emulation lv2 plugins"; 21 license = licenses.gpl3; 22 maintainers = [ maintainers.magnetophon ]; 23 platforms = platforms.linux; 24 }; 25}