mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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.
31 lines
890 B
Nix
31 lines
890 B
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "autotalent";
|
|
version = "0.2";
|
|
|
|
src = fetchzip {
|
|
url = "http://tombaran.info/${pname}-${version}.tar.gz";
|
|
sha256 = "19srnkghsdrxxlv2c7qimvyslxz63r97mkxfq78vbg654l3qz1a6";
|
|
};
|
|
|
|
makeFlags = [
|
|
"INSTALL_PLUGINS_DIR=$(out)/lib/ladspa"
|
|
];
|
|
|
|
# To avoid name clashes, plugins should be compiled with symbols hidden, except for `ladspa_descriptor`:
|
|
preConfigure = ''
|
|
sed -r 's/^CFLAGS.*$/\0 -fvisibility=hidden/' -i Makefile
|
|
|
|
sed -r 's/^const LADSPA_Descriptor \*/__attribute__ ((visibility ("default"))) \0/' -i autotalent.c
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "http://tombaran.info/autotalent.html";
|
|
description = "Real-time pitch correction LADSPA plugin (no MIDI control)";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.michalrus ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|