Files
nixpkgs/pkgs/by-name/uf/uftp/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
892 B
Nix

{
lib,
stdenv,
fetchurl,
openssl,
}:
stdenv.mkDerivation rec {
pname = "uftp";
version = "5.0.3";
src = fetchurl {
url = "mirror://sourceforge/uftp-multicast/source-tar/uftp-${version}.tar.gz";
sha256 = "sha256-y4ZowZsfELxjoW/6iT4gXcPshjYQN9R32AAyYOvEAIA=";
};
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 = "https://uftp-multicast.sourceforge.net/";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.fadenb ];
platforms = with lib.platforms; linux ++ darwin;
};
}