rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / filegive / default.nix
blob9d85c168c5ce98e1b1e3f8bda52245c007e736c4
1 { buildGoModule, lib, fetchurl }:
3 buildGoModule rec {
4   pname = "filegive";
5   version = "unstable-2022-05-29";
6   rev = "5b28e7087a";
8   src = fetchurl {
9     url = "https://viric.name/cgi-bin/filegive/tarball/${rev}/filegive-${rev}.tar.gz";
10     hash = "sha256-A69oys59GEysZvQLaYsfoX/X2ENMMH2BGfJqXohQjpc=";
11   };
13   vendorHash = "sha256-l7FRl58NWGBynMlGu1SCxeVBEzTdxREvUWzmJDiliZM=";
15   ldflags = [ "-s" "-w" ];
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     mainProgram = "filegive";
23   };