mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 14:53:52 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
37 lines
951 B
Nix
37 lines
951 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;
|
|
};
|
|
}
|