blob: 2a0f02e94f7638a2410fbc9b454410756936be5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
stdenv,
fetchFromGitHub,
lv2,
}:
stdenv.mkDerivation {
pname = "mod-distortion";
version = "0-unstable-2016-08-19";
src = fetchFromGitHub {
owner = "mod-audio";
repo = "mod-distortion";
rev = "e672d5feb9d631798e3d56eb96e8958c3d2c6821";
sha256 = "005wdkbhn9dgjqv019cwnziqg86yryc5vh7j5qayrzh9v446dw34";
};
buildInputs = [ lv2 ];
installFlags = [ "INSTALL_PATH=$(out)/lib/lv2" ];
meta = {
homepage = "https://github.com/mod-audio/mod-distortion";
description = "Analog distortion emulation lv2 plugins";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.linux;
};
}
|