nixpkgs/pkgs/servers/uftp/default.nix

34 lines
871 B
Nix
Raw Permalink Normal View History

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