about summary refs log tree commit diff
path: root/pkgs/applications/audio/ChowCentaur
diff options
context:
space:
mode:
authorZitrone <nix@dev.quantenzitrone.eu>2024-06-12 04:33:44 +0200
committerZitrone <general@dev.quantenzitrone.eu>2024-06-16 15:34:04 +0200
commita479d38d7060317ecd7391167ec4ae3d31059585 (patch)
treea6910943e5a6acf2fa8f2aee09c0dc09f36f5e04 /pkgs/applications/audio/ChowCentaur
parent40c832b32c40e461f96f19bbe70d4697306a090b (diff)
ChowCentaur: rename to chow-centaur
Diffstat (limited to 'pkgs/applications/audio/ChowCentaur')
-rw-r--r--pkgs/applications/audio/ChowCentaur/default.nix53
1 files changed, 0 insertions, 53 deletions
diff --git a/pkgs/applications/audio/ChowCentaur/default.nix b/pkgs/applications/audio/ChowCentaur/default.nix
deleted file mode 100644
index 80f5768dc1578..0000000000000
--- a/pkgs/applications/audio/ChowCentaur/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, cmake, pkg-config, cairo, libxkbcommon
-, xcbutilcursor, xcbutilkeysyms, xcbutil, libXrandr, libXinerama, libXcursor
-, alsa-lib, libjack2, lv2, gcc-unwrapped }:
-
-stdenv.mkDerivation rec {
-  pname = "ChowCentaur";
-  version = "1.4.0";
-
-  src = fetchFromGitHub {
-    owner = "jatinchowdhury18";
-    repo = "KlonCentaur";
-    rev = "v${version}";
-    sha256 = "0mrzlf4a6f25xd7z9xanpyq7ybb4al01dzpjsgi0jkmlmadyhc4h";
-    fetchSubmodules = true;
-  };
-
-  nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = [
-    cairo
-    libxkbcommon
-    xcbutilcursor
-    xcbutilkeysyms
-    xcbutil
-    libXrandr
-    libXinerama
-    libXcursor
-    alsa-lib
-    libjack2
-    lv2
-  ];
-
-  cmakeFlags = [
-    "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar"
-    "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib"
-    "-DCMAKE_NM=${gcc-unwrapped}/bin/gcc-nm"
-  ];
-
-  installPhase = ''
-    mkdir -p $out/lib/lv2 $out/lib/vst3
-    cd ChowCentaur/ChowCentaur_artefacts/Release
-    cp -r LV2/ChowCentaur.lv2 $out/lib/lv2
-    cp -r VST3/ChowCentaur.vst3 $out/lib/vst3
-  '';
-
-  meta = with lib; {
-    description =
-      "Digital emulation of the Klon Centaur guitar pedal using RNNs, Wave Digital Filters, and more";
-    homepage = "https://github.com/jatinchowdhury18/KlonCentaur";
-    license = licenses.bsd3;
-    platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ magnetophon ];
-  };
-}