Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
935 B
Nix
50 lines
935 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
cmake,
|
|
pkg-config,
|
|
fetchFromGitHub,
|
|
fmt,
|
|
libpsl,
|
|
cxxopts,
|
|
kdePackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "tremotesf";
|
|
version = "2.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "equeim";
|
|
repo = "tremotesf2";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-o6GSuRKO2LNpaFUuSu6VUeZN/blfpsz/piE7RZ47YfI=";
|
|
# We need this for src/libtremotesf
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
kdePackages.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
kdePackages.qtbase
|
|
kdePackages.qttools
|
|
fmt
|
|
libpsl
|
|
kdePackages.kwidgetsaddons
|
|
kdePackages.kwindowsystem
|
|
cxxopts
|
|
];
|
|
|
|
meta = {
|
|
description = "Remote GUI for transmission-daemon";
|
|
mainProgram = "tremotesf";
|
|
license = lib.licenses.gpl3Plus;
|
|
homepage = "https://github.com/equeim/tremotesf2";
|
|
maintainers = with lib.maintainers; [ sochotnicky ];
|
|
};
|
|
})
|