lol
1{ buildGoModule, lib, fetchurl }:
2
3buildGoModule rec {
4 pname = "filegive";
5 version = "unstable-2022-05-29";
6 rev = "5b28e7087a";
7
8 src = fetchurl {
9 url = "https://viric.name/cgi-bin/filegive/tarball/${rev}/filegive-${rev}.tar.gz";
10 hash = "sha256-A69oys59GEysZvQLaYsfoX/X2ENMMH2BGfJqXohQjpc=";
11 };
12
13 vendorHash = "sha256-l7FRl58NWGBynMlGu1SCxeVBEzTdxREvUWzmJDiliZM=";
14
15 ldflags = [ "-s" "-w" ];
16
17 meta = with lib; {
18 homepage = "https://viric.name/cgi-bin/filegive";
19 description = "Easy p2p file sending program";
20 license = licenses.agpl3Plus;
21 maintainers = with maintainers; [ viric ];
22 };
23}