Skip to content

Commit

Permalink
dragonfly-reverb: 3.2.1 -> 3.2.5 (#118939)
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed May 9, 2021
1 parent b1f796e commit c8cc491
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/applications/audio/dragonfly-reverb/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
'';

Expand All @@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
];

installPhase = ''
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/lib/lv2/
mkdir -p $out/lib/vst/
Expand All @@ -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"];
};
}

0 comments on commit c8cc491

Please sign in to comment.