Merge pull request #38806 from magnetophon/dragonfly-reverb
dragonfly-reverb: init at 0.9.1
This commit is contained in:
commit
b959c6ed60
33
pkgs/applications/audio/dragonfly-reverb/default.nix
Normal file
33
pkgs/applications/audio/dragonfly-reverb/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ stdenv, fetchgit, libjack2, libGL, pkgconfig, xorg }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dragonfly-reverb-${src.rev}";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/michaelwillis/dragonfly-reverb";
|
||||||
|
rev = "0.9.1";
|
||||||
|
sha256 = "1dbykx044h768bbzabdagl4jh65gqgfsxsrarjrkp07sqnhlnhpd";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
patchShebangs dpf/utils/generate-ttl.sh
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [
|
||||||
|
libjack2 xorg.libX11 libGL
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/lib/lv2/
|
||||||
|
cp -a bin/DragonflyReverb.lv2/ $out/lib/lv2/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/michaelwillis/dragonfly-reverb;
|
||||||
|
description = "A hall-style reverb based on freeverb3 algorithms";
|
||||||
|
maintainers = [ maintainers.magnetophon ];
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = ["x86_64-linux"];
|
||||||
|
};
|
||||||
|
}
|
@ -15253,6 +15253,8 @@ with pkgs;
|
|||||||
|
|
||||||
draftsight = callPackage ../applications/graphics/draftsight { };
|
draftsight = callPackage ../applications/graphics/draftsight { };
|
||||||
|
|
||||||
|
dragonfly-reverb = callPackage ../applications/audio/dragonfly-reverb { };
|
||||||
|
|
||||||
droopy = callPackage ../applications/networking/droopy {
|
droopy = callPackage ../applications/networking/droopy {
|
||||||
inherit (python3Packages) wrapPython;
|
inherit (python3Packages) wrapPython;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user