4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, libjack2, libGL, pkgconfig, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dragonfly-reverb";
|
|
version = "3.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "michaelwillis";
|
|
repo = "dragonfly-reverb";
|
|
rev = version;
|
|
sha256 = "0vfm2510shah67k87mdyar4wr4vqwii59y9lqfhwm6blxparkrqa";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patchPhase = ''
|
|
patchShebangs dpf/utils/generate-ttl.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
libjack2 xorg.libX11 libGL
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/lib/lv2/
|
|
mkdir -p $out/lib/vst/
|
|
cd bin
|
|
for bin in DragonflyEarlyReflections DragonflyPlateReverb DragonflyHallReverb DragonflyRoomReverb; do
|
|
cp -a $bin $out/bin/
|
|
cp -a $bin-vst.so $out/lib/vst/
|
|
cp -a $bin.lv2/ $out/lib/lv2/ ;
|
|
done
|
|
'';
|
|
|
|
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;
|
|
platforms = ["x86_64-linux"];
|
|
};
|
|
}
|