Files
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
951 B
Nix

# To use this package, use: `services.transmission.webHome = pkgs.flood-for-transmission;`
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "flood-for-transmission";
version = "2025-07-19T10-51-22";
src = fetchFromGitHub {
owner = "johman10";
repo = "flood-for-transmission";
tag = version;
hash = "sha256-2oHEVvZZcxH9RBKreaiwFKp7Iu5ijYdpXdgVknCxwKw=";
};
npmDepsHash = "sha256-IUdsUGsm6yAbXqf4UGkz1VPa366TnWsTakkbywbLeTU=";
strictDeps = true;
installPhase = ''
runHook preInstall
cp -r public $out
runHook postInstall
'';
meta = with lib; {
description = "Flood clone for Transmission";
homepage = "https://github.com/johman10/flood-for-transmission";
downloadPage = "https://github.com/johman10/flood-for-transmission/releases";
license = licenses.gpl3Only;
maintainers = with maintainers; [ al3xtjames ];
platforms = platforms.all;
};
}