9b40680d46
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/uftp/versions. These checks were done: - built on NixOS - ran ‘/nix/store/97wm1cjgqd5ih45689h2xmqfv7ywv8bi-uftp-4.9.6/bin/uftpd help’ got 0 exit code - ran ‘/nix/store/97wm1cjgqd5ih45689h2xmqfv7ywv8bi-uftp-4.9.6/bin/uftp_keymgt -h’ got 0 exit code - ran ‘/nix/store/97wm1cjgqd5ih45689h2xmqfv7ywv8bi-uftp-4.9.6/bin/uftp_keymgt --help’ got 0 exit code - ran ‘/nix/store/97wm1cjgqd5ih45689h2xmqfv7ywv8bi-uftp-4.9.6/bin/uftp_keymgt help’ got 0 exit code - found 4.9.6 with grep in /nix/store/97wm1cjgqd5ih45689h2xmqfv7ywv8bi-uftp-4.9.6 - directory tree listing: https://gist.github.com/c08d432d7a238559a904561aa46161bd
34 lines
897 B
Nix
34 lines
897 B
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "uftp-${version}";
|
|
version = "4.9.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/uftp-multicast/source-tar/uftp-${version}.tar.gz";
|
|
sha256 = "0byg7ff39i32ljzqxn6rhiz3zs1b04y50xpvzmjx5v8pmdajn0sz";
|
|
};
|
|
|
|
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 = stdenv.lib.licenses.gpl3;
|
|
maintainers = [ stdenv.lib.maintainers.fadenb ];
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
|
};
|
|
}
|