mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #8078 from magnetophon/magnetophonDSP-master
init CharacterCompressor CompBus RhythmDelay constant-detune-chorus
This commit is contained in:
commit
6ad663fa90
33
pkgs/applications/audio/CharacterCompressor/default.nix
Normal file
33
pkgs/applications/audio/CharacterCompressor/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchFromGitHub, faust2jack, faust2lv2 }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "CharacterCompressor-${version}";
|
||||
version = "0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "magnetophon";
|
||||
repo = "CharacterCompressor";
|
||||
rev = "v${version}";
|
||||
sha256 = "0fvi8m4nshcxypn4jgxhnh7pxp68wshhav3k8wn3il7qpw71pdxi";
|
||||
};
|
||||
|
||||
buildInputs = [ faust2jack faust2lv2 ];
|
||||
|
||||
buildPhase = ''
|
||||
faust2jack -t 99999 CharacterCompressor.dsp
|
||||
faust2lv2 -t 99999 CharacterCompressor.dsp
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp CharacterCompressor $out/bin/
|
||||
mkdir -p $out/lib/lv2
|
||||
cp -r CharacterCompressor.lv2/ $out/lib/lv2
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A compressor with character. For jack and lv2";
|
||||
homepage = https://github.com/magnetophon/CharacterCompressor;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
||||
};
|
||||
}
|
39
pkgs/applications/audio/CompBus/default.nix
Normal file
39
pkgs/applications/audio/CompBus/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchFromGitHub, faust2jack, faust2lv2 }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "CompBus-${version}";
|
||||
version = "1.1.02";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "magnetophon";
|
||||
repo = "CompBus";
|
||||
rev = "v${version}";
|
||||
sha256 = "025vi60caxk3j2vxxrgbc59xlyr88vgn7k3127s271zvpyy7apwh";
|
||||
};
|
||||
|
||||
buildInputs = [ faust2jack faust2lv2 ];
|
||||
|
||||
buildPhase = ''
|
||||
for f in *.dsp;
|
||||
do
|
||||
faust2jack -t 99999 $f
|
||||
faust2lv2 -t 99999 $f
|
||||
done
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/lib/lv2
|
||||
mv *.lv2/ $out/lib/lv2
|
||||
mkdir -p $out/bin
|
||||
for f in $(find . -executable -type f);
|
||||
do
|
||||
cp $f $out/bin/
|
||||
done
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A group of compressors mixed into a bus, sidechained from that mix bus. For jack and lv2";
|
||||
homepage = https://github.com/magnetophon/CompBus;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
||||
};
|
||||
}
|
33
pkgs/applications/audio/RhythmDelay/default.nix
Normal file
33
pkgs/applications/audio/RhythmDelay/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchFromGitHub, faust2jack, faust2lv2 }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "RhythmDelay-${version}";
|
||||
version = "2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "magnetophon";
|
||||
repo = "RhythmDelay";
|
||||
rev = "v${version}";
|
||||
sha256 = "0n938nm08mf3lz92k6v07k1469xxzmfkgclw40jgdssfcfa16bn7";
|
||||
};
|
||||
|
||||
buildInputs = [ faust2jack faust2lv2 ];
|
||||
|
||||
buildPhase = ''
|
||||
faust2jack -t 99999 RhythmDelay.dsp
|
||||
faust2lv2 -t 99999 RhythmDelay.dsp
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp RhythmDelay $out/bin/
|
||||
mkdir -p $out/lib/lv2
|
||||
cp -r RhythmDelay.lv2/ $out/lib/lv2
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Tap a rhythm into your delay! For jack and lv2";
|
||||
homepage = https://github.com/magnetophon/RhythmDelay;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
||||
};
|
||||
}
|
33
pkgs/applications/audio/constant-detune-chorus/default.nix
Normal file
33
pkgs/applications/audio/constant-detune-chorus/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenv, fetchFromGitHub, faust2jack, faust2lv2 }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "constant-detune-chorus-${version}";
|
||||
version = "0.1.01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "magnetophon";
|
||||
repo = "constant-detune-chorus";
|
||||
rev = "v${version}";
|
||||
sha256 = "1z8aj1a36ix9jizk9wl06b3i98hrkg47qxqp8vx930r624pc5z86";
|
||||
};
|
||||
|
||||
buildInputs = [ faust2jack faust2lv2 ];
|
||||
|
||||
buildPhase = ''
|
||||
faust2jack -t 99999 constant-detune-chorus.dsp
|
||||
faust2lv2 -t 99999 constant-detune-chorus.dsp
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp constant-detune-chorus $out/bin/
|
||||
mkdir -p $out/lib/lv2
|
||||
cp -r constant-detune-chorus.lv2/ $out/lib/lv2
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A chorus algorithm that maintains constant and symmetric detuning depth (in cents), regardless of modulation rate. For jack and lv2";
|
||||
homepage = https://github.com/magnetophon/constant-detune-chorus;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.magnetophon ];
|
||||
};
|
||||
}
|
@ -10607,6 +10607,8 @@ let
|
||||
amdappsdk = amdappsdk28;
|
||||
};
|
||||
|
||||
CharacterCompressor = callPackage ../applications/audio/CharacterCompressor { };
|
||||
|
||||
chatzilla = callPackage ../applications/networking/irc/chatzilla { };
|
||||
|
||||
chromium = callPackage ../applications/networking/browsers/chromium {
|
||||
@ -10642,10 +10644,14 @@ let
|
||||
|
||||
cmus = callPackage ../applications/audio/cmus { };
|
||||
|
||||
CompBus = callPackage ../applications/audio/CompBus { };
|
||||
|
||||
compiz = callPackage ../applications/window-managers/compiz {
|
||||
inherit (gnome) GConf ORBit2 metacity;
|
||||
};
|
||||
|
||||
constant-detune-chorus = callPackage ../applications/audio/constant-detune-chorus { };
|
||||
|
||||
coriander = callPackage ../applications/video/coriander {
|
||||
inherit (gnome) libgnomeui GConf;
|
||||
};
|
||||
@ -12220,6 +12226,8 @@ let
|
||||
qt = qt4;
|
||||
});
|
||||
|
||||
RhythmDelay = callPackage ../applications/audio/RhythmDelay { };
|
||||
|
||||
rofi = callPackage ../applications/misc/rofi {
|
||||
automake = automake114x;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user