nixpkgs/pkgs/servers/uftp/default.nix

34 lines
897 B
Nix
Raw Normal View History

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