mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
37 lines
936 B
Nix
37 lines
936 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "bitmagnet";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bitmagnet-io";
|
|
repo = "bitmagnet";
|
|
rev = "v${version}";
|
|
hash = "sha256-lomTfG6Fo4IywI8VMRvv4mBNRxLCq6IQGIuaR61UwOE=";
|
|
};
|
|
|
|
vendorHash = "sha256-tKU4GoaEwwdbpWjojx+Z/mWxXKjceJPYRg5UTpYzad4=";
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "A self-hosted BitTorrent indexer, DHT crawler, and torrent search engine";
|
|
longDescription = ''
|
|
A self-hosted BitTorrent indexer, DHT crawler, content classifier and torrent search engine with web UI, GraphQL API and Servarr stack integration.
|
|
'';
|
|
homepage = "https://bitmagnet.io/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ eclairevoyant viraptor ];
|
|
mainProgram = "bitmagnet";
|
|
};
|
|
}
|