From a92b6e0e952c15b139dd7db80fb122b5203613d8 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 21 Jun 2023 15:57:46 +0800 Subject: [PATCH] uhhyou.lv2: drop as upstream has gone --- .../applications/audio/uhhyou.lv2/default.nix | 67 ------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 - 3 files changed, 1 insertion(+), 69 deletions(-) delete mode 100644 pkgs/applications/audio/uhhyou.lv2/default.nix diff --git a/pkgs/applications/audio/uhhyou.lv2/default.nix b/pkgs/applications/audio/uhhyou.lv2/default.nix deleted file mode 100644 index eb590c22bbfc..000000000000 --- a/pkgs/applications/audio/uhhyou.lv2/default.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ lib, stdenv -, fetchFromGitHub -, pkg-config -, python3 -, fftw -, libGL -, libX11 -, libjack2 -, liblo -, lv2 -}: - -stdenv.mkDerivation rec { - # this is what upstream calls the package, see: - # https://github.com/ryukau/LV2Plugins#uhhyou-plugins-lv2 - pname = "uhhyou.lv2"; - version = "unstable-2021-02-08"; - - src = fetchFromGitHub { - owner = "ryukau"; - repo = "LV2Plugins"; - rev = "df67460fc344f94db4306d4ee21e4207e657bbee"; - fetchSubmodules = true; - sha256 = "1a23av35cw26zgq93yzmmw35084hsj29cb7sb04j2silv5qisila"; - }; - - nativeBuildInputs = [ pkg-config python3 ]; - - buildInputs = [ fftw libGL libX11 libjack2 liblo lv2 ]; - - makeFlags = [ "PREFIX=$(out)" ]; - - prePatch = '' - patchShebangs generate-ttl.sh patch.sh patch/apply.sh - ''; - - enableParallelBuilding = true; - - meta = with lib; { - description = "Audio plugins for Linux"; - longDescription = '' - Plugin List: - - CollidingCombSynth - - CubicPadSynth - - EnvelopedSine - - EsPhaser - - FDNCymbal - - FoldShaper - - IterativeSinCluster - - L3Reverb - - L4Reverb - - LatticeReverb - - LightPadSynth - - ModuloShaper - - OddPowShaper - - SevenDelay - - SoftClipper - - SyncSawSynth - - TrapezoidSynth - - WaveCymbal - ''; - homepage = "https://github.com/ryukau/LV2Plugins/"; - license = licenses.gpl3Plus; - platforms = platforms.linux; - maintainers = [ maintainers.magnetophon ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index f3df5f2cc5d6..546290a69ad5 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -1711,6 +1711,7 @@ mapAliases ({ uchiwa = throw "uchiwa is deprecated and archived by upstream"; # Added 2022-05-02 ucsFonts = throw "'ucsFonts' has been renamed to/replaced by 'ucs-fonts'"; # Converted to throw 2022-02-22 ufraw = throw "ufraw is unmaintained and has been removed from nixpkgs. Its successor, nufraw, doesn't seem to be stable enough. Consider using Darktable for now"; # Added 2020-01-11 + uhhyou.lv2 = throw "'uhhyou.lv2' has been removed, upstream gone"; # Added 2023-06-21 ultrastardx-beta = throw "'ultrastardx-beta' has been renamed to/replaced by 'ultrastardx'"; # Converted to throw 2022-02-22 unicorn-emu = unicorn; # Added 2020-10-29 uniffi-bindgen = throw "uniffi-bindgen has been removed since upstream no longer provides a standalone package for the CLI"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec146342702a..3074a1ad5674 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -35082,8 +35082,6 @@ with pkgs; uefi-run = callPackage ../tools/virtualization/uefi-run { }; - uhhyou.lv2 = callPackage ../applications/audio/uhhyou.lv2 { }; - umurmur = callPackage ../applications/networking/umurmur { }; udocker = callPackage ../tools/virtualization/udocker { };