From 7409a900400e7178aae120fe4ccadcbf37119e31 Mon Sep 17 00:00:00 2001 From: GraysonTinker Date: Sat, 11 Apr 2026 09:50:23 -0700 Subject: [PATCH] limesuite: migrate to by-name --- .../default.nix => by-name/li/limesuite/package.nix} | 0 pkgs/by-name/li/limesuiteWithGui/package.nix | 7 +++++++ pkgs/top-level/all-packages.nix | 12 ------------ 3 files changed, 7 insertions(+), 12 deletions(-) rename pkgs/{applications/radio/limesuite/default.nix => by-name/li/limesuite/package.nix} (100%) create mode 100644 pkgs/by-name/li/limesuiteWithGui/package.nix diff --git a/pkgs/applications/radio/limesuite/default.nix b/pkgs/by-name/li/limesuite/package.nix similarity index 100% rename from pkgs/applications/radio/limesuite/default.nix rename to pkgs/by-name/li/limesuite/package.nix diff --git a/pkgs/by-name/li/limesuiteWithGui/package.nix b/pkgs/by-name/li/limesuiteWithGui/package.nix new file mode 100644 index 000000000000..3c6de9daaaad --- /dev/null +++ b/pkgs/by-name/li/limesuiteWithGui/package.nix @@ -0,0 +1,7 @@ +{ + limesuite, +}: + +limesuite.override { + withGui = true; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dbd14bed93e4..61809863fdeb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2865,18 +2865,6 @@ with pkgs; licensee = callPackage ../tools/package-management/licensee { }; - inherit - ({ - limesuite = callPackage ../applications/radio/limesuite { - }; - limesuiteWithGui = limesuite.override { - withGui = true; - }; - }) - limesuite - limesuiteWithGui - ; - linux-gpib = callPackage ../applications/science/electronics/linux-gpib/user.nix { }; liquidctl = with python3Packages; toPythonApplication liquidctl;