lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 20 lines 546 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 pname = "toss"; 5 version = "1.1"; 6 src = fetchFromGitHub { 7 owner = "zerotier"; 8 repo = pname; 9 rev = version; 10 sha256 = "05ql0d8wbdhnmh3dw8ch5bi6clfb9h8v21lq2a74iy02slya2y0r"; 11 }; 12 preInstall = "export DESTDIR=$out/bin"; 13 meta = with lib; 14 src.meta // { 15 description = "Dead simple LAN file transfers from the command line"; 16 license = with licenses; [ mit ]; 17 maintainers = with maintainers; [ ehmry ]; 18 platforms = platforms.unix; 19 }; 20}