dragonfly-reverb: 3.2.1 -> 3.2.5 (#118939)

This commit is contained in:
Bart Brouns 2021-05-09 06:33:14 +02:00 committed by GitHub
parent b1f796eabe
commit c8cc491b7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,17 @@
stdenv.mkDerivation rec {
pname = "dragonfly-reverb";
version = "3.2.1";
version = "3.2.5";
src = fetchFromGitHub {
owner = "michaelwillis";
repo = "dragonfly-reverb";
rev = version;
sha256 = "0vfm2510shah67k87mdyar4wr4vqwii59y9lqfhwm6blxparkrqa";
sha256 = "14kia9wjs0nqfx4psnr3vf4x6hihkf80gb0mjzmdnnnk4cnrdydm";
fetchSubmodules = true;
};
patchPhase = ''
postPatch = ''
patchShebangs dpf/utils/generate-ttl.sh
'';
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/lib/lv2/
mkdir -p $out/lib/vst/
@ -31,13 +32,14 @@ stdenv.mkDerivation rec {
cp -a $bin-vst.so $out/lib/vst/
cp -a $bin.lv2/ $out/lib/lv2/ ;
done
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/michaelwillis/dragonfly-reverb";
description = "A hall-style reverb based on freeverb3 algorithms";
maintainers = [ maintainers.magnetophon ];
license = licenses.gpl3;
license = licenses.gpl3Plus;
platforms = ["x86_64-linux"];
};
}