Unverified Commit 178877d1 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

tremotesf: 2.6.0 -> 2.7.5 (#388318)

parents fa292652 7156ad35
Loading
Loading
Loading
Loading
+17 −22
Original line number Diff line number Diff line
@@ -4,51 +4,46 @@
  cmake,
  pkg-config,
  fetchFromGitHub,
  qtbase,
  qttools,
  kwidgetsaddons,
  kwindowsystem,
  fmt,
  libpsl,
  cxxopts,
  wrapQtAppsHook,
  kdePackages,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "tremotesf";
  version = "2.6.0";
  version = "2.7.5";

  src = fetchFromGitHub {
    owner = "equeim";
    repo = "tremotesf2";
    rev = finalAttrs.version;
    hash = "sha256-9iV4UsKZWaIxhqtRZXTFHgjOKVFJE2bCJOD2O/qL+DY=";
    tag = finalAttrs.version;
    hash = "sha256-LJ73ZynofPOMS5rSohJSY94vSQvGfNiNFRyGu6LPfU0=";
    # We need this for src/libtremotesf
    fetchSubmodules = true;
  };

  buildInputs = [
    qtbase
    qttools
    fmt
    libpsl
    kwidgetsaddons
    kwindowsystem
    cxxopts
  ];

  nativeBuildInputs = [
    cmake
    pkg-config
    kdePackages.wrapQtAppsHook
  ];

  propagatedBuildInputs = [ wrapQtAppsHook ];
  buildInputs = [
    kdePackages.qtbase
    kdePackages.qttools
    fmt
    libpsl
    kdePackages.kwidgetsaddons
    kdePackages.kwindowsystem
    cxxopts
  ];

  meta = with lib; {
  meta = {
    description = "Remote GUI for transmission-daemon";
    mainProgram = "tremotesf";
    license = licenses.gpl3Plus;
    license = lib.licenses.gpl3Plus;
    homepage = "https://github.com/equeim/tremotesf2";
    maintainers = with maintainers; [ sochotnicky ];
    maintainers = with lib.maintainers; [ sochotnicky ];
  };
})
+1 −1
Original line number Diff line number Diff line
@@ -18138,7 +18138,7 @@ with pkgs;
  duden = python3Packages.toPythonApplication python3Packages.duden;
  tremotesf = libsForQt5.callPackage ../applications/networking/p2p/tremotesf { };
  tremotesf = callPackage ../applications/networking/p2p/tremotesf { };
  yazi-unwrapped = callPackage ../by-name/ya/yazi-unwrapped/package.nix { inherit (darwin.apple_sdk.frameworks) Foundation; };