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

buildGoPackage rec {
  name = "filegive-0.7.4";

  src = fetchurl {
    url = "http://viric.name/soft/filegive/${name}.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;
  };
}