1{
2 lib,
3 stdenv,
4 fetchurl,
5 lv2,
6 pkg-config,
7 python3,
8 wafHook,
9}:
10
11stdenv.mkDerivation rec {
12 pname = "fomp";
13 version = "1.2.2";
14
15 src = fetchurl {
16 url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
17 sha256 = "sha256-xnGijydiO3B7BjSlryFuH1j/OPio9hCYbniq2IXp2W8=";
18 };
19
20 nativeBuildInputs = [
21 pkg-config
22 wafHook
23 ];
24 buildInputs = [
25 lv2
26 python3
27 ];
28
29 meta = with lib; {
30 homepage = "https://drobilla.net/software/fomp.html";
31 description = "LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen";
32 license = licenses.gpl2Plus;
33 maintainers = [ maintainers.magnetophon ];
34 platforms = platforms.linux;
35 };
36}