nixpkgs/pkgs/servers/uftp/default.nix

34 lines
871 B
Nix
Raw Normal View History

2021-01-14 23:07:56 -08:00
{ lib, stdenv, fetchurl, openssl }:
2016-08-12 04:46:38 -07:00
stdenv.mkDerivation rec {
pname = "uftp";
2020-04-30 04:43:02 -07:00
version = "5.0";
2016-08-12 04:46:38 -07:00
src = fetchurl {
url = "mirror://sourceforge/uftp-multicast/source-tar/uftp-${version}.tar.gz";
2020-04-30 04:43:02 -07:00
sha256 = "1q08schd765fsm9647ac4ic2x70ys2x48mqz97mibdi4bbm72bsn";
2016-08-12 04:46:38 -07:00
};
2017-02-01 19:45:52 -08:00
buildInputs = [ openssl ];
2016-08-12 04:46:38 -07:00
outputs = [ "out" "man" ];
2016-08-12 04:46:38 -07:00
patchPhase = ''
substituteInPlace makefile --replace gcc cc
'';
installPhase = ''
mkdir -p $out/bin $man/share/man/man1
2016-08-12 04:46:38 -07:00
cp {uftp,uftpd,uftp_keymgt,uftpproxyd} $out/bin/
cp {uftp.1,uftpd.1,uftp_keymgt.1,uftpproxyd.1} $man/share/man/man1
2016-08-12 04:46:38 -07:00
'';
meta = {
description = "Encrypted UDP based FTP with multicast";
2020-04-11 07:12:18 -07:00
homepage = "http://uftp-multicast.sourceforge.net/";
2021-01-14 23:07:56 -08:00
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.fadenb ];
platforms = with lib.platforms; linux ++ darwin;
2016-08-12 04:46:38 -07:00
};
}