nixpkgs/pkgs/tools/networking/tftp-hpa/default.nix
Joachim Fasting 6812c1eedc tftp-hpa: reimplement using mkDerivation
Also rename top-level name to tftp-hpa.
2015-11-24 14:45:15 +01:00

25 lines
685 B
Nix

{ stdenv, fetchurl, tcp_wrappers }:
stdenv.mkDerivation rec {
name = "tftp-hpa-${version}";
version="5.2";
src = fetchurl {
url = "mirror://kernel/software/network/tftp/tftp-hpa/${name}.tar.xz";
sha256 = "12vidchglhyc20znq5wdsbhi9mqg90jnl7qr9qs8hbvaz4fkdvmg";
};
meta = with stdenv.lib; {
description = "TFTP tools - a lot of fixes on top of BSD TFTP";
maintainers = with maintainers; [ raskin ];
platforms = with platforms; linux;
license = licenses.bsd3;
homepage = http://www.kernel.org/pub/software/network/tftp/;
};
passthru = {
updateInfo = {
downloadPage = "http://www.kernel.org/pub/software/network/tftp/";
};
};
}