My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/filegive/default.nix

23 lines
579 B

{ buildGoPackage, lib, fetchurl }:
buildGoPackage rec {
pname = "filegive";
version = "0.7.4";
src = fetchurl {
url = "https://viric.name/soft/filegive/filegive-${version}.tar.gz";
sha256 = "1z3vyqfdp271qa5ah0i6jmn9gh3gb296wcm33sd2zfjqapyh12hy";
};
goDeps = ./deps.nix;
goPackagePath = "viric.name/soft/filegive";
meta = with lib; {
homepage = "https://viric.name/cgi-bin/filegive";
description = "Easy p2p file sending program";
license = licenses.agpl3Plus;
maintainers = [ maintainers.viric ];
platforms = platforms.unix;
};
}