mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
bitmagnet: init at 0.0.6
This commit is contained in:
parent
398ccb4592
commit
a8c996f5a8
31
pkgs/by-name/bi/bitmagnet/package.nix
Normal file
31
pkgs/by-name/bi/bitmagnet/package.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "bitmagnet";
|
||||||
|
version = "0.0.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bitmagnet-io";
|
||||||
|
repo = "bitmagnet";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-+KAIHg8M2CM+GRRv+htmev8MFe/Y1sJ8p+um/c7kI7c=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-ydiZ3KMEiVkmdzhHjYYLJ7wuiKmwlMEn4OWrKSOnaSo=";
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
mainProgram = "bitmagnet";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user