Unverified Commit d4ec00fb authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

vorta: move to by-name (#419419)

parents f1083b2e c79a19ce
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -3,13 +3,10 @@
  stdenv,
  python3Packages,
  fetchFromGitHub,
  wrapQtAppsHook,
  qtwayland,
  qt6Packages,
  borgbackup,
  versionCheckHook,
  makeFontsConf,
  qtbase,
  qtsvg,
}:

python3Packages.buildPythonApplication rec {
@@ -25,15 +22,13 @@ python3Packages.buildPythonApplication rec {
  };

  nativeBuildInputs = [
    wrapQtAppsHook
    qt6Packages.wrapQtAppsHook
  ];

  buildInputs =
    [
      qtsvg
    ]
    [ qt6Packages.qtsvg ]
    ++ lib.optionals stdenv.hostPlatform.isLinux [
      qtwayland
      qt6Packages.qtwayland
    ];

  build-system = with python3Packages; [
@@ -85,7 +80,7 @@ python3Packages.buildPythonApplication rec {
      export FONTCONFIG_FILE=${fontsConf};
      # For tests/test_misc.py::test_autostart
      mkdir -p $HOME/.config/autostart
      export QT_PLUGIN_PATH="${qtbase}/${qtbase.qtPluginPrefix}"
      export QT_PLUGIN_PATH="${qt6Packages.qtbase}/${qt6Packages.qtbase.qtPluginPrefix}"
      export QT_QPA_PLATFORM=offscreen
    '';

+0 −2
Original line number Diff line number Diff line
@@ -2869,8 +2869,6 @@ with pkgs;

  uutils-coreutils-noprefix = uutils-coreutils.override { prefix = null; };

  vorta = qt6Packages.callPackage ../applications/backup/vorta { };

  xkcdpass = with python3Packages; toPythonApplication xkcdpass;

  zonemaster-cli = perlPackages.ZonemasterCLI;