magnetico: init at 0.8.1

This commit is contained in:
rnhmjoj 2019-07-13 18:09:25 +02:00
parent a62fa2f17f
commit fc4ca1aead
No known key found for this signature in database
GPG Key ID: BFBAF4C975F76450
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{ lib, fetchFromGitHub, buildGoModule, go-bindata }:
buildGoModule rec {
pname = "magnetico";
version = "0.8.1";
src = fetchFromGitHub {
owner = "boramalper";
repo = "magnetico";
rev = "v${version}";
sha256 = "1f7y3z9ql079ix6ycihkmd3z3da3sfiqw2fap31pbvvjs65sg644";
};
modSha256 = "1h9fij8mxlxfw7kxix00n10fkhkvmf8529fxbk1n30cxc1bs2szf";
buildInputs = [ go-bindata ];
buildPhase = ''
make magneticow magneticod
'';
doCheck = true;
checkPhase = ''
make test
'';
meta = with lib; {
description = "Autonomous (self-hosted) BitTorrent DHT search engine suite.";
homepage = https://github.com/boramalper/magnetico;
license = licenses.agpl3;
badPlatforms = platforms.darwin;
maintainers = with maintainers; [ rnhmjoj ];
};
}

View File

@ -19062,6 +19062,8 @@ in
marp = callPackage ../applications/office/marp { };
magnetico = callPackage ../applications/networking/p2p/magnetico { };
matchbox = callPackage ../applications/window-managers/matchbox { };
mblaze = callPackage ../applications/networking/mailreaders/mblaze { };