Merge pull request #259809 from eclairevoyant/bitmag

bitmagnet: init at 0.0.6

authored by

Mario Rodas and committed by
GitHub
eb28c9f1 1f529ef7

+31
+31
pkgs/by-name/bi/bitmagnet/package.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "bitmagnet"; 8 + version = "0.0.6"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "bitmagnet-io"; 12 + repo = "bitmagnet"; 13 + rev = "v${version}"; 14 + hash = "sha256-+KAIHg8M2CM+GRRv+htmev8MFe/Y1sJ8p+um/c7kI7c="; 15 + }; 16 + 17 + vendorHash = "sha256-ydiZ3KMEiVkmdzhHjYYLJ7wuiKmwlMEn4OWrKSOnaSo="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = { 22 + description = "A self-hosted BitTorrent indexer, DHT crawler, and torrent search engine"; 23 + longDescription = '' 24 + A self-hosted BitTorrent indexer, DHT crawler, content classifier and torrent search engine with web UI, GraphQL API and Servarr stack integration. 25 + ''; 26 + homepage = "https://bitmagnet.io/"; 27 + license = lib.licenses.mit; 28 + maintainers = with lib.maintainers; [ eclairevoyant ]; 29 + mainProgram = "bitmagnet"; 30 + }; 31 + }