mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +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.
53 lines
1.7 KiB
Nix
53 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, cairomm
|
|
, cmake
|
|
, lv2
|
|
, libpthreadstubs
|
|
, libXdmcp
|
|
, libXft
|
|
, ntk
|
|
, pcre
|
|
, fftwFloat
|
|
, zita-resampler
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "infamousPlugins";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ssj71";
|
|
repo = "infamousPlugins";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-AhW4hLmCxz7yHMdxM6kOvtCXk1jEg/XtyPgt4yk1xqs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
buildInputs = [ cairomm lv2 libpthreadstubs libXdmcp libXft ntk pcre fftwFloat zita-resampler ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://ssj71.github.io/infamousPlugins";
|
|
description = "Collection of open-source LV2 plugins";
|
|
longDescription = ''
|
|
These are audio plugins in the LV2 format, developed for linux. Most are suitable for live use.
|
|
This collection contains:
|
|
* Cellular Automaton Synth - additive synthesizer, where 16 harmonics are added according to rules of elementary cellular automata
|
|
* Envelope Follower - a fully featured envelope follower plugin
|
|
* Hip2B - a distortion/destroyer plugin
|
|
* cheap distortion - another distortion plugin, but this one I wanted to get it as light as possible
|
|
* stuck - a clone of the electro-harmonix freeze
|
|
* power cut - this effect is commonly called tape stop
|
|
* power up - the opposite of the power cut
|
|
* ewham - a whammy style pitchshifter
|
|
* lushlife - a simulated double tracking plugin capable of everything from a thin beatle effect to thick lush choruses to weird outlandish effects
|
|
'';
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "infamous-rule";
|
|
};
|
|
}
|