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, pkg-config, python3
|
|
, alsaLib, curl, freetype, gtk3, libGL, libX11, libXext, libXinerama, webkitgtk
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "tunefish";
|
|
version = "unstable-2020-08-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jpcima";
|
|
repo = "tunefish";
|
|
rev = "b3d83cc66201619f6399500f6897fbeb1786d9ed";
|
|
fetchSubmodules = true;
|
|
sha256 = "0rjpq3s609fblzkvnc9729glcnfinmxljh0z8ldpzr245h367zxh";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config python3 ];
|
|
buildInputs = [ alsaLib curl freetype gtk3 libGL libX11 libXext libXinerama webkitgtk ];
|
|
|
|
postPatch = ''
|
|
patchShebangs src/tunefish4/generate-lv2-ttl.py
|
|
'';
|
|
|
|
makeFlags = [
|
|
"-C" "src/tunefish4/Builds/LinuxMakefile"
|
|
"CONFIG=Release"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/lv2
|
|
cp -r src/tunefish4/Builds/LinuxMakefile/build/Tunefish4.lv2 $out/lib/lv2
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tunefish-synth.com/";
|
|
description = "Virtual analog synthesizer LV2 plugin";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|