nixpkgs/pkgs/tools/networking/filegive/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
579 B
Nix
Raw Normal View History

{ buildGoPackage, lib, fetchurl }:
2018-12-11 18:12:55 +00:00
buildGoPackage rec {
pname = "filegive";
version = "0.7.4";
src = fetchurl {
2021-08-11 23:19:38 +00:00
url = "https://viric.name/soft/filegive/filegive-${version}.tar.gz";
sha256 = "1z3vyqfdp271qa5ah0i6jmn9gh3gb296wcm33sd2zfjqapyh12hy";
};
2018-12-11 18:12:55 +00:00
goDeps = ./deps.nix;
2018-12-11 18:12:55 +00:00
goPackagePath = "viric.name/soft/filegive";
meta = with lib; {
2021-08-11 23:19:38 +00:00
homepage = "https://viric.name/cgi-bin/filegive";
2013-05-02 07:34:42 +00:00
description = "Easy p2p file sending program";
2018-12-11 18:12:55 +00:00
license = licenses.agpl3Plus;
maintainers = [ maintainers.viric ];
platforms = platforms.unix;
};
}