summary refs log blame commit diff
path: root/pkgs/tools/networking/filegive/default.nix
blob: 681bda5b4e1ba7f830da933e1c04aa06c144b125 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                  
 
                    

                     

                  
                                                                        
                                                                    

    
                      
 
                                             
 
                    
                                                     
                                                  

                                        
                               

    
{ 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;
  };
}