about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-02-10 11:27:35 +0000
committerGitHub <noreply@github.com>2018-02-10 11:27:35 +0000
commitf7ce8c6cd69afb069ec737fdd42b2dcb07dc3913 (patch)
tree82a826e7710ebbd4dd42c72cf63d1de11ca46108 /pkgs/applications/audio
parentdf0fe7aa566ab3ec8975b6e6d47cefc99452a988 (diff)
parent2e8d620f047d2e089288c034e0a477befcc9c829 (diff)
downloadnixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.tar
nixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.tar.gz
nixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.tar.bz2
nixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.tar.lz
nixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.tar.xz
nixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.tar.zst
nixlib-f7ce8c6cd69afb069ec737fdd42b2dcb07dc3913.zip
Merge pull request #34522 from magnetophon/infamousPlugins
infamousPlugins: init at 0.2.03
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/infamousPlugins/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/audio/infamousPlugins/default.nix b/pkgs/applications/audio/infamousPlugins/default.nix
new file mode 100644
index 000000000000..fd9dee624206
--- /dev/null
+++ b/pkgs/applications/audio/infamousPlugins/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchFromGitHub, pkgconfig, cairomm, cmake, lv2, libpthreadstubs, libXdmcp, libXft, ntk, pcre, fftwFloat, zita-resampler }:
+
+stdenv.mkDerivation rec {
+  name = "infamousPlugins-v${version}";
+  version = "0.2.03";
+
+  src = fetchFromGitHub {
+    owner = "ssj71";
+    repo = "infamousPlugins";
+    rev = "v${version}";
+    sha256 = "1pb7vmc703j25rnyx81cqlfzi66v7gm4a49s06dbgy8a66s1i2zl";
+  };
+
+  nativeBuildInputs = [ pkgconfig cmake ];
+  buildInputs = [ cairomm lv2 libpthreadstubs libXdmcp libXft ntk pcre fftwFloat zita-resampler ];
+
+  meta = with stdenv.lib; {
+    homepage = https://ssj71.github.io/infamousPlugins;
+    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;
+  };
+}