tremotesf: init at 2.4.0 (#232488)

* maintainers: add sochotnicky

* tremotesf: init at 2.4.0

---------

Co-authored-by: Stanislav Ochotnický <stanislav@ochotnicky.com>
This commit is contained in:
Stanislav Ochotnický 2023-06-20 21:20:20 +02:00 committed by GitHub
parent 25d2daf317
commit 303a2b2bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 60 additions and 0 deletions

View File

@ -15052,6 +15052,12 @@
githubId = 1437166;
name = "Xia Bin";
};
sochotnicky = {
email = "stanislav+github@ochotnicky.com";
github = "sochotnicky";
githubId = 55726;
name = "Stanislav Ochotnický";
};
softinio = {
email = "code@softinio.com";
github = "softinio";

View File

@ -0,0 +1,52 @@
{stdenv
,lib
, cmake
, pkg-config
, fetchFromGitHub
, qtbase
, qttools
, kwidgetsaddons
, kwindowsystem
, fmt
, libpsl
, cxxopts
, wrapQtAppsHook
}:
stdenv.mkDerivation (finalAttrs: {
pname = "tremotesf";
version = "2.4.0";
src = fetchFromGitHub {
owner = "equeim";
repo = "tremotesf2";
rev = finalAttrs.version;
hash = "sha256-TKtBgMpCWIUl1bohAKCbTcZX2uaPmzeWut/OeNs/rME=";
# We need this for src/libtremotesf
fetchSubmodules = true;
};
buildInputs = [
qtbase
qttools
fmt
libpsl
kwidgetsaddons
kwindowsystem
cxxopts
];
nativeBuildInputs = [
cmake
pkg-config
];
propagatedBuildInputs = [ wrapQtAppsHook ];
meta = with lib; {
description = "Remote GUI for transmission-daemon";
license = licenses.gpl3Plus;
homepage = "https://github.com/equeim/tremotesf2";
maintainers = with maintainers; [ sochotnicky ];
};
})

View File

@ -40957,6 +40957,8 @@ with pkgs;
isolate = callPackage ../tools/security/isolate { };
tremotesf = libsForQt5.callPackage ../applications/networking/p2p/tremotesf { };
reindeer = callPackage ../development/tools/reindeer { };
charasay = callPackage ../tools/misc/charasay { };