From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Boskovits=2C=20G=C3=A1bor?= Subject: [PATCH] gnu: Add tftp-hpa. Date: Mon, 6 Feb 2017 23:58:25 +0100 Message-ID: <20170206225825.23935-1-boskovits@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38835) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1casGv-0007LT-PG for guix-devel@gnu.org; Mon, 06 Feb 2017 18:00:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1casGs-0007JK-FV for guix-devel@gnu.org; Mon, 06 Feb 2017 18:00:33 -0500 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:35475) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1casGs-0007J7-A5 for guix-devel@gnu.org; Mon, 06 Feb 2017 18:00:30 -0500 Received: by mail-wm0-x242.google.com with SMTP id u63so24924920wmu.2 for ; Mon, 06 Feb 2017 15:00:28 -0800 (PST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/tftp-hpa.scm: New file. --- gnu/packages/tftp-hpa.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 gnu/packages/tftp-hpa.scm diff --git a/gnu/packages/tftp-hpa.scm b/gnu/packages/tftp-hpa.scm new file mode 100644 index 000000000..44a008698 --- /dev/null +++ b/gnu/packages/tftp-hpa.scm @@ -0,0 +1,27 @@ +(define-module (gnu packages tftp-hpa) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu) + #:use-module (guix licenses)) + +(define-public tftp-hpa + (package + (name "tftp-hpa") + (version "5.2") + (source (origin + (method url-fetch) + (uri (string-append "https://www.kernel.org/pub/software/" + "network/tftp/tftp-hpa/tftp-hpa-" version + ".tar.xz")) + (sha256 + (base32 + "12vidchglhyc20znq5wdsbhi9mqg90jnl7qr9qs8hbvaz4fkdvmg")))) + (build-system gnu-build-system) + (arguments `(#:tests? #f)) ; no test target + (synopsis "HPA's tftp client") + (description + "This is a tftp client derived from OpenBSD tftp with some extra options +added and bugs fixed. The source includes readline support but it is not +enabled due to license conflicts between the BSD advertising clause and the GPL.") + (home-page "http://git.kernel.org/cgit/network/tftp/tftp-hpa.git/about/") + (license (list gpl1 bsd-4)))) -- 2.11.0