2019-07-13 09:09:25 -07:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule, go-bindata }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "magnetico";
|
2020-03-14 01:33:09 -07:00
|
|
|
version = "0.11.0";
|
2019-07-13 09:09:25 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "boramalper";
|
|
|
|
repo = "magnetico";
|
|
|
|
rev = "v${version}";
|
2020-03-14 01:33:09 -07:00
|
|
|
sha256 = "1622xcl5v67lrnkjwbg7g5b5ikrawx7p91jxbj3ixc1za2f3a3fn";
|
2019-07-13 09:09:25 -07:00
|
|
|
};
|
|
|
|
|
2020-04-30 18:59:00 -07:00
|
|
|
vendorSha256 = "0g4m0jnpy0q64xnflphyc0lmhni0q9448h7grbbr7f1s9lpqsjml";
|
2019-07-13 09:09:25 -07:00
|
|
|
|
2020-03-17 10:42:22 -07:00
|
|
|
nativeBuildInputs = [ go-bindata ];
|
2019-07-13 09:09:25 -07:00
|
|
|
buildPhase = ''
|
|
|
|
make magneticow magneticod
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
make test
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Autonomous (self-hosted) BitTorrent DHT search engine suite.";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/boramalper/magnetico";
|
2019-07-13 09:09:25 -07:00
|
|
|
license = licenses.agpl3;
|
|
|
|
badPlatforms = platforms.darwin;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
};
|
2020-07-30 20:58:04 -07:00
|
|
|
}
|