mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
talentedhack: init at 1.86
This commit is contained in:
parent
25e8015fed
commit
6787116416
2 changed files with 38 additions and 0 deletions
36
pkgs/applications/audio/talentedhack/default.nix
Normal file
36
pkgs/applications/audio/talentedhack/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ 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 stdenv.lib; {
|
||||
homepage = "https://github.com/jeremysalwen/TalentedHack";
|
||||
description = "LV2 port of Autotalent pitch correction plugin";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.michalrus ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -22191,6 +22191,8 @@ in
|
|||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
talentedhack = callPackage ../applications/audio/talentedhack { };
|
||||
|
||||
tambura = callPackage ../applications/audio/tambura { };
|
||||
|
||||
teams = callPackage ../applications/networking/instant-messengers/teams { };
|
||||
|
|
Loading…
Reference in a new issue