2023-05-12 21:48:06 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pkg-config
|
|
|
|
, cairomm
|
|
|
|
, cmake
|
|
|
|
, lv2
|
|
|
|
, libpthreadstubs
|
|
|
|
, libXdmcp
|
|
|
|
, libXft
|
|
|
|
, ntk
|
|
|
|
, pcre
|
|
|
|
, fftwFloat
|
|
|
|
, zita-resampler
|
|
|
|
}:
|
2018-01-22 16:46:40 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "infamousPlugins";
|
2023-10-01 02:00:12 +00:00
|
|
|
version = "0.3.2";
|
2018-01-22 16:46:40 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ssj71";
|
|
|
|
repo = "infamousPlugins";
|
|
|
|
rev = "v${version}";
|
2023-10-01 02:00:12 +00:00
|
|
|
sha256 = "sha256-AhW4hLmCxz7yHMdxM6kOvtCXk1jEg/XtyPgt4yk1xqs=";
|
2018-01-22 16:46:40 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
2018-01-22 16:46:40 +00:00
|
|
|
buildInputs = [ cairomm lv2 libpthreadstubs libXdmcp libXft ntk pcre fftwFloat zita-resampler ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://ssj71.github.io/infamousPlugins";
|
2018-01-22 16:46:40 +00:00
|
|
|
description = "A collection of open-source LV2 plugins";
|
|
|
|
longDescription = ''
|
|
|
|
These are audio plugins in the LV2 format, developed for linux. Most are suitable for live use.
|
|
|
|
This collection contains:
|
|
|
|
* Cellular Automaton Synth - additive synthesizer, where 16 harmonics are added according to rules of elementary cellular automata
|
|
|
|
* Envelope Follower - a fully featured envelope follower plugin
|
|
|
|
* Hip2B - a distortion/destroyer plugin
|
|
|
|
* cheap distortion - another distortion plugin, but this one I wanted to get it as light as possible
|
|
|
|
* stuck - a clone of the electro-harmonix freeze
|
|
|
|
* power cut - this effect is commonly called tape stop
|
|
|
|
* power up - the opposite of the power cut
|
|
|
|
* ewham - a whammy style pitchshifter
|
|
|
|
* lushlife - a simulated double tracking plugin capable of everything from a thin beatle effect to thick lush choruses to weird outlandish effects
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.magnetophon ];
|
|
|
|
platforms = platforms.linux;
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "infamous-rule";
|
2018-01-22 16:46:40 +00:00
|
|
|
};
|
|
|
|
}
|