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/servers/uftp/default.nix

33 lines
871 B

{ lib, stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
pname = "uftp";
version = "5.0";
src = fetchurl {
url = "mirror://sourceforge/uftp-multicast/source-tar/uftp-${version}.tar.gz";
sha256 = "1q08schd765fsm9647ac4ic2x70ys2x48mqz97mibdi4bbm72bsn";
};
buildInputs = [ openssl ];
outputs = [ "out" "man" ];
patchPhase = ''
substituteInPlace makefile --replace gcc cc
'';
installPhase = ''
mkdir -p $out/bin $man/share/man/man1
cp {uftp,uftpd,uftp_keymgt,uftpproxyd} $out/bin/
cp {uftp.1,uftpd.1,uftp_keymgt.1,uftpproxyd.1} $man/share/man/man1
'';
meta = {
description = "Encrypted UDP based FTP with multicast";
homepage = "http://uftp-multicast.sourceforge.net/";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.fadenb ];
platforms = with lib.platforms; linux ++ darwin;
};
}