Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
974 B
Nix
47 lines
974 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
lv2,
|
|
fftwFloat,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "talentedhack";
|
|
version = "1.86";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jeremysalwen";
|
|
repo = "talentedhack";
|
|
rev = "v${version}";
|
|
sha256 = "0kwvayalysmk7y49jq0k16al252md8d45z58hphzsksmyz6148bx";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
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;
|
|
};
|
|
}
|