summary refs log tree commit diff
path: root/pkgs/tools/networking/filegive/default.nix
blob: 60dbd1c323b7e65c178d9e83cd85c022ff183906 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildGoPackage, lib, fetchurl }:

buildGoPackage rec {
  pname = "filegive";
  version = "0.7.4";

  src = fetchurl {
    url = "http://viric.name/soft/filegive/filegive-${version}.tar.gz";
    sha256 = "1z3vyqfdp271qa5ah0i6jmn9gh3gb296wcm33sd2zfjqapyh12hy";
  };

  goDeps = ./deps.nix;

  goPackagePath = "viric.name/soft/filegive";

  meta = with lib; {
    homepage = "http://viric.name/cgi-bin/filegive";
    description = "Easy p2p file sending program";
    license = licenses.agpl3Plus;
    maintainers = [ maintainers.viric ];
    platforms = platforms.unix;
  };
}