mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +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.
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
# set VAMP_PATH ?
|
|
# plugins availible on sourceforge and http://www.vamp-plugins.org/download.html (various licenses)
|
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libsndfile }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vamp-plugin-sdk";
|
|
version = "2.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vamp-plugins";
|
|
repo = "vamp-plugin-sdk";
|
|
rev = "vamp-plugin-sdk-v${version}";
|
|
hash = "sha256-5jNA6WmeIOVjkEMZXB5ijxyfJT88alVndBif6dnUFdI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libsndfile ];
|
|
|
|
# build is susceptible to race conditions: https://github.com/vamp-plugins/vamp-plugin-sdk/issues/12
|
|
enableParallelBuilding = false;
|
|
makeFlags = [
|
|
"AR:=$(AR)"
|
|
"RANLIB:=$(RANLIB)"
|
|
] ++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "-o test";
|
|
|
|
meta = with lib; {
|
|
description = "Audio processing plugin system for plugins that extract descriptive information from audio data";
|
|
homepage = "https://vamp-plugins.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.marcweber ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|