From e8de4992b8e12bab532c47cb17735561ee42f789 Mon Sep 17 00:00:00 2001 From: Tomo Date: Mon, 14 Oct 2024 06:54:35 +0000 Subject: [PATCH 1/3] soundwireserver: format with nixfmt-rfc-style --- pkgs/applications/audio/soundwireserver/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/audio/soundwireserver/default.nix b/pkgs/applications/audio/soundwireserver/default.nix index b296ebdad602..7a761fc5f1ad 100644 --- a/pkgs/applications/audio/soundwireserver/default.nix +++ b/pkgs/applications/audio/soundwireserver/default.nix @@ -1,9 +1,10 @@ -{ lib -, qt5 -, autoPatchelfHook -, unzip -, fetchzip -, portaudio +{ + lib, + qt5, + autoPatchelfHook, + unzip, + fetchzip, + portaudio, }: qt5.mkDerivation { From 7358914a01bcf11f6cbd5112e2c0212d83bd0f74 Mon Sep 17 00:00:00 2001 From: Tomo Date: Mon, 14 Oct 2024 06:56:32 +0000 Subject: [PATCH 2/3] soundwireserver: move to by-name --- .../default.nix => by-name/so/soundwireserver/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{applications/audio/soundwireserver/default.nix => by-name/so/soundwireserver/package.nix} (100%) diff --git a/pkgs/applications/audio/soundwireserver/default.nix b/pkgs/by-name/so/soundwireserver/package.nix similarity index 100% rename from pkgs/applications/audio/soundwireserver/default.nix rename to pkgs/by-name/so/soundwireserver/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2d21ffc081ef..fdda75f3788b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12397,8 +12397,6 @@ with pkgs; soundkonverter = libsForQt5.soundkonverter; - soundwireserver = callPackage ../applications/audio/soundwireserver { }; - sozu = callPackage ../servers/sozu { }; spacer = callPackage ../tools/misc/spacer { }; From 53843dda7f15a18d46ce28b3f0363166d7d73c58 Mon Sep 17 00:00:00 2001 From: Tomo Date: Mon, 14 Oct 2024 07:00:50 +0000 Subject: [PATCH 3/3] soundwireserver: remove unused unzip dependency --- pkgs/by-name/so/soundwireserver/package.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/by-name/so/soundwireserver/package.nix b/pkgs/by-name/so/soundwireserver/package.nix index 7a761fc5f1ad..1d04e48129d5 100644 --- a/pkgs/by-name/so/soundwireserver/package.nix +++ b/pkgs/by-name/so/soundwireserver/package.nix @@ -2,7 +2,6 @@ lib, qt5, autoPatchelfHook, - unzip, fetchzip, portaudio, }: @@ -17,7 +16,6 @@ qt5.mkDerivation { }; nativeBuildInputs = [ - unzip autoPatchelfHook ];