flirc: migrate to by-name

This commit is contained in:
Guy Chronister
2026-04-04 08:34:48 -05:00
parent 30dc477046
commit 46d1b75608
3 changed files with 4 additions and 10 deletions
@@ -3,11 +3,9 @@
stdenv,
fetchurl,
autoPatchelfHook,
wrapQtAppsHook,
hidapi,
readline,
qtsvg,
qtxmlpatterns,
libsForQt5,
}:
stdenv.mkDerivation {
@@ -21,14 +19,14 @@ stdenv.mkDerivation {
nativeBuildInputs = [
autoPatchelfHook
wrapQtAppsHook
libsForQt5.wrapQtAppsHook
];
buildInputs = [
hidapi
readline
qtsvg
qtxmlpatterns
libsForQt5.qtsvg
libsForQt5.qtxmlpatterns
];
dontConfigure = true;
-4
View File
@@ -1517,10 +1517,6 @@ with pkgs;
libfx2 = with python3Packages; toPythonApplication fx2;
flirc = libsForQt5.callPackage ../applications/video/flirc {
readline = readline70;
};
foxdot = with python3Packages; toPythonApplication foxdot;
fluffychat-web = fluffychat.override { targetFlutterPlatform = "web"; };