From c307ae10cab54de454256a88169ee32e09685e8b Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Fri, 11 Oct 2024 23:41:11 +0200 Subject: [PATCH] welle-io: apply nixfmt --- pkgs/applications/radio/welle-io/default.nix | 43 ++++++++++++++++---- 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/radio/welle-io/default.nix b/pkgs/applications/radio/welle-io/default.nix index 5917aed42a8f..b2b2bd86434f 100644 --- a/pkgs/applications/radio/welle-io/default.nix +++ b/pkgs/applications/radio/welle-io/default.nix @@ -1,7 +1,23 @@ -{ stdenv, lib, fetchFromGitHub, cmake, pkg-config,wrapQtAppsHook -, qtbase, qtcharts, qtmultimedia, qtdeclarative, qt5compat -, faad2, rtl-sdr, soapysdr-with-plugins, libusb-compat-0_1, fftwSinglePrec, lame, mpg123 -} : +{ + stdenv, + lib, + fetchFromGitHub, + cmake, + pkg-config, + wrapQtAppsHook, + qtbase, + qtcharts, + qtmultimedia, + qtdeclarative, + qt5compat, + faad2, + rtl-sdr, + soapysdr-with-plugins, + libusb-compat-0_1, + fftwSinglePrec, + lame, + mpg123, +}: stdenv.mkDerivation rec { pname = "welle-io"; @@ -14,7 +30,11 @@ stdenv.mkDerivation rec { hash = "sha256-sSknzZiD9/MLyO+gAYopogOQu5HRcqaRcfqwq4Rld7A="; }; - nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; + nativeBuildInputs = [ + cmake + pkg-config + wrapQtAppsHook + ]; buildInputs = [ faad2 @@ -31,14 +51,21 @@ stdenv.mkDerivation rec { ]; cmakeFlags = [ - "-DRTLSDR=true" "-DSOAPYSDR=true" + "-DRTLSDR=true" + "-DSOAPYSDR=true" ]; meta = with lib; { description = "DAB/DAB+ Software Radio"; homepage = "https://www.welle.io/"; - maintainers = with maintainers; [ ck3d markuskowa ]; + maintainers = with maintainers; [ + ck3d + markuskowa + ]; license = licenses.gpl2Only; - platforms = [ "x86_64-linux" "i686-linux" ] ++ platforms.darwin; + platforms = [ + "x86_64-linux" + "i686-linux" + ] ++ platforms.darwin; }; }