nixpkgs/pkgs/servers/uftp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
873 B
Nix
Raw 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";
2022-08-06 08:06:48 +00:00
version = "5.0.1";
2016-08-12 11:46:38 +00:00
src = fetchurl {
url = "mirror://sourceforge/uftp-multicast/source-tar/uftp-${version}.tar.gz";
2022-08-06 08:06:48 +00:00
sha256 = "sha256-8ENfvI6f+hJeBWAMtsf8kz19WH9brkGyVyZ75PLODmE=";
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";
homepage = "https://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
};
}