qgrx: remove with lib

This commit is contained in:
awwpotato 2025-06-26 11:58:06 -07:00
parent a10bca57bb
commit d103e67626
No known key found for this signature in database

View File

@ -89,7 +89,7 @@ gnuradioMinimal.pkgs.mkDerivation rec {
qtWrapperArgs+=("''${gappsWrapperArgs[@]}") qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
''; '';
meta = with lib; { meta = {
description = "Software defined radio (SDR) receiver"; description = "Software defined radio (SDR) receiver";
mainProgram = "gqrx"; mainProgram = "gqrx";
longDescription = '' longDescription = ''
@ -101,9 +101,9 @@ gnuradioMinimal.pkgs.mkDerivation rec {
homepage = "https://gqrx.dk/"; homepage = "https://gqrx.dk/";
# Some of the code comes from the Cutesdr project, with a BSD license, but # 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. # it's currently unknown which version of the BSD license that is.
license = licenses.gpl3Plus; license = lib.licenses.gpl3Plus;
platforms = platforms.linux ++ platforms.darwin; platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = with maintainers; [ maintainers = with lib.maintainers; [
bjornfor bjornfor
fpletz fpletz
]; ];