From 18ca25e57785081d17b12b7ace48353478b3a6de Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sun, 5 Oct 2025 09:49:22 +0200 Subject: [PATCH] chow-kick: remove unneeded dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit see: Tracking issue: Remove long end-of-life GTK 2 #410814 --- pkgs/by-name/ch/chow-kick/package.nix | 42 +++------------------------ 1 file changed, 4 insertions(+), 38 deletions(-) diff --git a/pkgs/by-name/ch/chow-kick/package.nix b/pkgs/by-name/ch/chow-kick/package.nix index cbb4ecce74be..b65941f8d089 100644 --- a/pkgs/by-name/ch/chow-kick/package.nix +++ b/pkgs/by-name/ch/chow-kick/package.nix @@ -1,38 +1,21 @@ { alsa-lib, - at-spi2-core, - brotli, cmake, curl, - dbus, libepoxy, fetchFromGitHub, - libglut, freetype, - gtk2-x11, lib, libGL, libXcursor, - libXdmcp, libXext, libXinerama, libXrandr, - libXtst, - libdatrie, libjack2, - libpsl, - libselinux, - libsepol, - libsysprof-capture, - libthai, libxkbcommon, lv2, - pcre, pkg-config, - python3, - sqlite, stdenv, - util-linuxMinimal, }: stdenv.mkDerivation (finalAttrs: { @@ -53,34 +36,17 @@ stdenv.mkDerivation (finalAttrs: { ]; buildInputs = [ alsa-lib - at-spi2-core - brotli curl - dbus libepoxy - libglut freetype - gtk2-x11 libGL libXcursor - libXdmcp libXext libXinerama libXrandr - libXtst - libdatrie libjack2 - libpsl - libselinux - libsepol - libsysprof-capture - libthai libxkbcommon lv2 - pcre - python3 - sqlite - util-linuxMinimal ]; cmakeFlags = [ @@ -101,12 +67,12 @@ stdenv.mkDerivation (finalAttrs: { cp ChowKick_artefacts/Release/Standalone/ChowKick $out/bin ''; - meta = with lib; { + meta = { homepage = "https://github.com/Chowdhury-DSP/ChowKick"; description = "Kick synthesizer based on old-school drum machine circuits"; - license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ magnetophon ]; - platforms = platforms.linux; + license = [ lib.licenses.bsd3 ]; + maintainers = [ lib.maintainers.magnetophon ]; + platforms = lib.platforms.linux; mainProgram = "ChowKick"; }; })