1 { lib, stdenv, fetchFromGitHub, xorg, xorgproto, cairo, lv2, pkg-config }:
3 stdenv.mkDerivation rec {
4 pname = "MelMatchEQ.lv2";
7 src = fetchFromGitHub {
11 sha256 = "1s805jgb9msxfq9047s7pxrngizb00w8sm4z94iii80ba65rd20x";
14 nativeBuildInputs = [ pkg-config ];
16 xorg.libX11 xorgproto cairo lv2
19 installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];
22 homepage = "https://github.com/brummer10/MelMatchEQ.lv2";
23 description = "Profiling EQ using a 26 step Mel Frequency Band";
24 maintainers = with maintainers; [ magnetophon ];
25 license = licenses.gpl2Plus;
26 platforms = platforms.linux;