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

authored by

Bart Brouns and committed by
GitHub
c8cc491b b1f796ea

+6 -4
+6 -4
pkgs/applications/audio/dragonfly-reverb/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "dragonfly-reverb"; 5 - version = "3.2.1"; 5 + version = "3.2.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "michaelwillis"; 9 9 repo = "dragonfly-reverb"; 10 10 rev = version; 11 - sha256 = "0vfm2510shah67k87mdyar4wr4vqwii59y9lqfhwm6blxparkrqa"; 11 + sha256 = "14kia9wjs0nqfx4psnr3vf4x6hihkf80gb0mjzmdnnnk4cnrdydm"; 12 12 fetchSubmodules = true; 13 13 }; 14 14 15 - patchPhase = '' 15 + postPatch = '' 16 16 patchShebangs dpf/utils/generate-ttl.sh 17 17 ''; 18 18 ··· 22 22 ]; 23 23 24 24 installPhase = '' 25 + runHook preInstall 25 26 mkdir -p $out/bin 26 27 mkdir -p $out/lib/lv2/ 27 28 mkdir -p $out/lib/vst/ ··· 31 32 cp -a $bin-vst.so $out/lib/vst/ 32 33 cp -a $bin.lv2/ $out/lib/lv2/ ; 33 34 done 35 + runHook postInstall 34 36 ''; 35 37 36 38 meta = with lib; { 37 39 homepage = "https://github.com/michaelwillis/dragonfly-reverb"; 38 40 description = "A hall-style reverb based on freeverb3 algorithms"; 39 41 maintainers = [ maintainers.magnetophon ]; 40 - license = licenses.gpl3; 42 + license = licenses.gpl3Plus; 41 43 platforms = ["x86_64-linux"]; 42 44 }; 43 45 }