forked from mirrors/nixpkgs
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
37 lines
949 B
Nix
37 lines
949 B
Nix
{ lib, stdenv, fetchFromGitHub, lv2, fftwFloat, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "talentedhack";
|
|
version = "1.86";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeremysalwen";
|
|
repo = "talentedhack";
|
|
rev = "v${version}";
|
|
sha256 = "0kwvayalysmk7y49jq0k16al252md8d45z58hphzsksmyz6148bx";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ lv2 fftwFloat ];
|
|
|
|
# To avoid name clashes, plugins should be compiled with symbols hidden, except for `lv2_descriptor`:
|
|
preConfigure = ''
|
|
sed -r 's/^CFLAGS.*$/\0 -fvisibility=hidden/' -i Makefile
|
|
'';
|
|
|
|
installPhase = ''
|
|
d=$out/lib/lv2/talentedhack.lv2
|
|
mkdir -p $d
|
|
cp *.so *.ttl $d
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jeremysalwen/TalentedHack";
|
|
description = "LV2 port of Autotalent pitch correction plugin";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.michalrus ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|