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
68 lines
1.4 KiB
Nix
68 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, python3
|
|
, fftw
|
|
, libGL
|
|
, libX11
|
|
, libjack2
|
|
, liblo
|
|
, lv2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
# this is what upstream calls the package, see:
|
|
# https://github.com/ryukau/LV2Plugins#uhhyou-plugins-lv2
|
|
pname = "uhhyou.lv2";
|
|
version = "unstable-2020-07-31";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ryukau";
|
|
repo = "LV2Plugins";
|
|
rev = "6189be67acaeb95452f8adab73a731d94a7b6f47";
|
|
fetchSubmodules = true;
|
|
sha256 = "049gigx2s89z8vf17gscs00c150lmcdwya311nbrwa18fz4bx242";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config python3 ];
|
|
|
|
buildInputs = [ fftw libGL libX11 libjack2 liblo lv2 ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
prePatch = ''
|
|
patchShebangs generate-ttl.sh
|
|
cp patch/NanoVG.cpp lib/DPF/dgl/src/NanoVG.cpp
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Audio plugins for Linux";
|
|
longDescription = ''
|
|
Plugin List:
|
|
- CubicPadSynth
|
|
- EnvelopedSine
|
|
- EsPhaser
|
|
- FDNCymbal
|
|
- FoldShaper
|
|
- IterativeSinCluster
|
|
- L3Reverb
|
|
- L4Reverb
|
|
- LatticeReverb
|
|
- LightPadSynth
|
|
- ModuloShaper
|
|
- OddPowShaper
|
|
- SevenDelay
|
|
- SoftClipper
|
|
- SyncSawSynth
|
|
- TrapezoidSynth
|
|
- WaveCymbal
|
|
'';
|
|
homepage = "https://github.com/ryukau/LV2Plugins/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
};
|
|
}
|