Merge pull request #38806 from magnetophon/dragonfly-reverb

dragonfly-reverb: init at 0.9.1
This commit is contained in:
Jörg Thalheim 2018-04-24 14:04:35 +01:00 committed by GitHub
commit b959c6ed60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View 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"];
};
}

View File

@ -15253,6 +15253,8 @@ with pkgs;
draftsight = callPackage ../applications/graphics/draftsight { };
dragonfly-reverb = callPackage ../applications/audio/dragonfly-reverb { };
droopy = callPackage ../applications/networking/droopy {
inherit (python3Packages) wrapPython;
};