2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2011-08-30 08:02:01 +01:00
|
|
|
|
2015-04-20 11:05:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "tftp-hpa";
|
2015-04-20 11:05:04 +01:00
|
|
|
version="5.2";
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://kernel/software/network/tftp/tftp-hpa/${pname}-${version}.tar.xz";
|
2015-04-20 11:05:04 +01:00
|
|
|
sha256 = "12vidchglhyc20znq5wdsbhi9mqg90jnl7qr9qs8hbvaz4fkdvmg";
|
2011-08-30 08:02:01 +01:00
|
|
|
};
|
|
|
|
|
2015-04-20 11:05:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-08-30 08:02:01 +01:00
|
|
|
description = "TFTP tools - a lot of fixes on top of BSD TFTP";
|
2015-04-20 11:05:04 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2015-11-25 22:04:57 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-20 11:05:04 +01:00
|
|
|
license = licenses.bsd3;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.kernel.org/pub/software/network/tftp/";
|
2011-08-30 08:02:01 +01:00
|
|
|
};
|
2015-04-20 11:05:04 +01:00
|
|
|
|
2011-08-30 08:02:01 +01:00
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
2017-08-02 22:50:51 +01:00
|
|
|
downloadPage = "https://www.kernel.org/pub/software/network/tftp/";
|
2011-08-30 08:02:01 +01:00
|
|
|
};
|
|
|
|
};
|
2015-04-20 11:05:04 +01:00
|
|
|
}
|