1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/atftp/default.nix

26 lines
652 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, readline, tcp_wrappers, pcre, makeWrapper, gcc }:
2016-07-21 05:21:01 +01:00
stdenv.mkDerivation rec {
pname = "atftp";
version = "0.7.2";
2016-07-21 05:21:01 +01:00
src = fetchurl {
url = "mirror://sourceforge/atftp/${pname}-${version}.tar.gz";
sha256 = "0hah3fhzl6vfs381883vbvf4d13cdhsyf0x7ncbl55wz9rkq1l0s";
};
2016-07-21 05:21:01 +01:00
buildInputs = [ readline tcp_wrappers pcre makeWrapper gcc ];
2016-07-21 05:21:01 +01:00
# Expects pre-GCC5 inline semantics
NIX_CFLAGS_COMPILE = "-std=gnu89";
doCheck = false; # fails
meta = {
description = "Advanced tftp tools";
maintainers = [ lib.maintainers.raskin ];
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
};
}