Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
612 B
Nix
Raw Normal View History

2024-07-22 22:30:00 +03:00
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "cross-seed";
2025-01-13 12:44:26 +00:00
version = "6.8.5";
2024-07-22 22:30:00 +03:00
src = fetchFromGitHub {
owner = "cross-seed";
repo = "cross-seed";
tag = "v${version}";
2025-01-13 12:44:26 +00:00
hash = "sha256-PrpS4GzGkicfN04yqGDeFZBVk0RA5RFlZPbNVHpNN8E=";
2024-07-22 22:30:00 +03:00
};
2025-01-13 12:44:26 +00:00
npmDepsHash = "sha256-xX0su3q31R42m8jksF2IoSZCe9dFjUlrvaI5uMD/HGQ=";
2024-07-22 22:30:00 +03:00
meta = {
description = "Fully-automatic torrent cross-seeding with Torznab";
homepage = "https://cross-seed.org";
license = lib.licenses.asl20;
mainProgram = "cross-seed";
maintainers = with lib.maintainers; [ mkez ];
};
}