toss: init at 1.1

This commit is contained in:
Emery Hemingway 2020-08-31 11:39:55 +02:00
parent 599089ed1d
commit 425d945250
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "toss";
version = "1.1";
src = fetchFromGitHub {
owner = "zerotier";
repo = pname;
rev = version;
sha256 = "05ql0d8wbdhnmh3dw8ch5bi6clfb9h8v21lq2a74iy02slya2y0r";
};
preInstall = "export DESTDIR=$out/bin";
meta = with stdenv.lib;
src.meta // {
description = "Dead simple LAN file transfers from the command line";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ehmry ];
platforms = platforms.unix;
};
}

View file

@ -7396,6 +7396,8 @@ in
torsocks = callPackage ../tools/security/tor/torsocks.nix { };
toss = callPackage ../tools/networking/toss { };
tox-node = callPackage ../tools/networking/tox-node { };
toxvpn = callPackage ../tools/networking/toxvpn { };