mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
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:
parent
25d2daf317
commit
303a2b2bb0
@ -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";
|
||||
|
52
pkgs/applications/networking/p2p/tremotesf/default.nix
Normal file
52
pkgs/applications/networking/p2p/tremotesf/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user