atftp: 0.7.5 -> 0.8.0

Changelog: https://sourceforge.net/p/atftp/code/ci/v0.8.0/tree/Changelog
This commit is contained in:
Fabian Affolter 2023-01-08 18:27:25 +01:00
parent d458a6b572
commit cdd030f65f

View file

@ -1,9 +1,11 @@
{ lib
, stdenv
, autoreconfHook
, fetchurl
, gcc
, makeWrapper
, pcre
, pcre2
, perl
, ps
, readline
, tcp_wrappers
@ -11,11 +13,11 @@
stdenv.mkDerivation rec {
pname = "atftp";
version = "0.7.5";
version = "0.8.0";
src = fetchurl {
url = "mirror://sourceforge/atftp/${pname}-${version}.tar.gz";
sha256 = "12h3sgkd25j4nfagil2jqyj1n8yxvaawj0cf01742642n57pmj4k";
hash = "sha256-3yqgicdnD56rQOVZjl0stqWC3FGCkm6lC01pDk438xY=";
};
# fix test script
@ -24,17 +26,19 @@ stdenv.mkDerivation rec {
'';
nativeBuildInputs = [
autoreconfHook
makeWrapper
];
buildInputs = [
gcc
pcre
pcre2
readline
tcp_wrappers
];
checkInputs = [
perl
ps
];