Unverified Commit c62e6165 authored by Markus Kowalewski's avatar Markus Kowalewski Committed by GitHub
Browse files

Merge pull request #303692 from Tungsten842/limesuite

limesuite: disable gui by default and add limesuiteWithGui
parents 3196e22a 5ae151de
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
, sqlite, wxGTK32, libusb1, soapysdr
, mesa_glu, libX11, gnuplot, fltk
, GLUT
, withGui ? !stdenv.isDarwin # withGui transitively depends on mesa, which is broken on darwin
, withGui ? false
}:

stdenv.mkDerivation rec {
@@ -48,6 +48,7 @@ stdenv.mkDerivation rec {
    license = licenses.asl20;
    maintainers = with maintainers; [ markuskowa ];
    platforms = platforms.unix;
    badPlatforms = lib.optionals withGui platforms.darwin; # withGui transitively depends on mesa, which is broken on darwin
  };
}
+10 −3
Original line number Diff line number Diff line
@@ -10486,9 +10486,16 @@ with pkgs;
  lidarr = callPackage ../servers/lidarr { };
  inherit ({
    limesuite = callPackage ../applications/radio/limesuite {
      inherit (darwin.apple_sdk.frameworks) GLUT;
    };
    limesuiteWithGui = limesuite.override {
      withGui = true;
    };
  })
  limesuite
  limesuiteWithGui;
  limesurvey = callPackage ../servers/limesurvey { };