2020-12-07 14:39:41 +00:00
|
|
|
{ stdenv
|
|
|
|
, alsaLib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, freetype
|
|
|
|
, libGL
|
|
|
|
, libX11
|
|
|
|
, libXcursor
|
|
|
|
, libXext
|
|
|
|
, libXrender
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkg-config
|
2018-11-27 07:32:11 +00:00
|
|
|
}:
|
2012-10-07 12:51:39 +01:00
|
|
|
|
2020-12-07 14:39:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "distrho-ports";
|
2020-12-07 14:39:41 +00:00
|
|
|
version = "2020-07-14";
|
2012-10-07 12:51:39 +01:00
|
|
|
|
2018-01-26 13:35:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DISTRHO";
|
|
|
|
repo = "DISTRHO-Ports";
|
2020-12-07 14:39:41 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "03ji41i6dpknws1vjwfxnl8c8bgisv2ng8xa4vqy2473k7wgdw4v";
|
2012-10-07 12:51:39 +01:00
|
|
|
};
|
|
|
|
|
2020-12-07 14:39:41 +00:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja ];
|
2018-11-27 07:32:11 +00:00
|
|
|
|
2012-10-07 12:51:39 +01:00
|
|
|
buildInputs = [
|
2020-12-07 14:39:41 +00:00
|
|
|
alsaLib
|
|
|
|
freetype
|
|
|
|
libGL
|
|
|
|
libX11
|
|
|
|
libXcursor
|
|
|
|
libXext
|
|
|
|
libXrender
|
2012-10-07 12:51:39 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-12-07 14:39:41 +00:00
|
|
|
homepage = "http://distrho.sourceforge.net/ports";
|
|
|
|
description = "Linux audio plugins and LV2 ports";
|
2012-10-07 12:51:39 +01:00
|
|
|
longDescription = ''
|
|
|
|
Includes:
|
2020-12-07 14:39:41 +00:00
|
|
|
arctican-function
|
|
|
|
arctican-pilgrim
|
|
|
|
dexed
|
|
|
|
drowaudio-distortion
|
|
|
|
drowaudio-distortionshaper
|
|
|
|
drowaudio-flanger
|
|
|
|
drowaudio-reverb
|
|
|
|
drowaudio-tremolo
|
|
|
|
drumsynth
|
|
|
|
easySSP
|
|
|
|
eqinox
|
|
|
|
HiReSam
|
|
|
|
juce-opl
|
|
|
|
klangfalter
|
|
|
|
LUFSMeter
|
|
|
|
LUFSMeter-Multi
|
|
|
|
luftikus
|
|
|
|
obxd
|
|
|
|
pitchedDelay
|
|
|
|
refine
|
|
|
|
stereosourceseparation
|
|
|
|
tal-dub-3
|
|
|
|
tal-filter
|
|
|
|
tal-filter-2
|
|
|
|
tal-noisemaker
|
|
|
|
tal-reverb
|
|
|
|
tal-reverb-2
|
|
|
|
tal-reverb-3
|
|
|
|
tal-vocoder-2
|
|
|
|
temper
|
|
|
|
vex
|
|
|
|
wolpertinger
|
2012-10-07 12:51:39 +01:00
|
|
|
'';
|
2018-09-01 12:32:04 +01:00
|
|
|
license = with licenses; [ gpl2 gpl3 gpl2Plus lgpl3 mit ];
|
2012-10-07 12:51:39 +01:00
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2018-08-24 08:38:25 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2012-10-07 12:51:39 +01:00
|
|
|
};
|
|
|
|
}
|