mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
toss: init at 1.1
This commit is contained in:
parent
599089ed1d
commit
425d945250
20
pkgs/tools/networking/toss/default.nix
Normal file
20
pkgs/tools/networking/toss/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue