From d103e67626d85a588402264d09cde14b2426b11c Mon Sep 17 00:00:00 2001 From: awwpotato Date: Thu, 26 Jun 2025 11:58:06 -0700 Subject: [PATCH] qgrx: remove with lib --- pkgs/by-name/gq/gqrx/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/gq/gqrx/package.nix b/pkgs/by-name/gq/gqrx/package.nix index 1db90ede113f..d9ddb2c6c3a6 100644 --- a/pkgs/by-name/gq/gqrx/package.nix +++ b/pkgs/by-name/gq/gqrx/package.nix @@ -89,7 +89,7 @@ gnuradioMinimal.pkgs.mkDerivation rec { qtWrapperArgs+=("''${gappsWrapperArgs[@]}") ''; - meta = with lib; { + meta = { description = "Software defined radio (SDR) receiver"; mainProgram = "gqrx"; longDescription = '' @@ -101,9 +101,9 @@ gnuradioMinimal.pkgs.mkDerivation rec { homepage = "https://gqrx.dk/"; # Some of the code comes from the Cutesdr project, with a BSD license, but # it's currently unknown which version of the BSD license that is. - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = with maintainers; [ + license = lib.licenses.gpl3Plus; + platforms = lib.platforms.linux ++ lib.platforms.darwin; + maintainers = with lib.maintainers; [ bjornfor fpletz ];