From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: Re: [PATCH] gnu: Add wireless-tools. Date: Fri, 18 Jul 2014 21:30:56 -0400 Message-ID: <87egxiw2wf.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> References: <87ha2ew2zx.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47689) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X8JUP-000449-UF for guix-devel@gnu.org; Fri, 18 Jul 2014 21:31:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X8JUJ-0000ry-NH for guix-devel@gnu.org; Fri, 18 Jul 2014 21:31:05 -0400 Received: from na3sys009aog110.obsmtp.com ([74.125.149.203]:41344) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X8JUJ-0000rs-EN for guix-devel@gnu.org; Fri, 18 Jul 2014 21:30:59 -0400 Received: by mail-qa0-f45.google.com with SMTP id cm18so3507307qab.18 for ; Fri, 18 Jul 2014 18:30:58 -0700 (PDT) Received: from izanagi (209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com. [209.6.40.86]) by mx.google.com with ESMTPSA id k7sm12698812qas.24.2014.07.18.18.30.56 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 18 Jul 2014 18:30:57 -0700 (PDT) In-Reply-To: <87ha2ew2zx.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Oops. Left in an unnecessary `let` form. Updated patch below. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-wireless-tools.patch >From f857d3d77f09a6053f910933ae95098bbb70bc30 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Fri, 18 Jul 2014 21:23:58 -0400 Subject: [PATCH] gnu: Add wireless-tools. * gnu/packages/linux.scm (wireless-tools): New variable. --- gnu/packages/linux.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b9864f4..6e307e5 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1329,3 +1329,29 @@ from the module-init-tools project.") device nodes from /dev/, handles hotplug events and loads drivers at boot time.") (license gpl2+))) ; libudev is under lgpl2.1+ + +(define-public wireless-tools + (package + (name "wireless-tools") + (version "30.pre9") + (source (origin + (method url-fetch) + (uri (string-append "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools." + version ".tar.gz")) + (sha256 + (base32 + "0qscyd44jmhs4k32ggp107hlym1pcyjzihiai48xs7xzib4wbndb")))) + (build-system gnu-build-system) + (arguments + `(#:phases (alist-replace + 'configure + (lambda* (#:key outputs #:allow-other-keys) + (setenv "PREFIX" (assoc-ref outputs "out"))) + %standard-phases) + #:tests? #f)) + (synopsis "Tools for manipulating Linux Wireless Extensions") + (description "Wireless Tools are used to manipulate the Linux Wireless +Extensions. The Wireless Extension is an interface allowing you to set +Wireless LAN specific parameters and get the specific stats.") + (home-page "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html") + (license gpl2+))) -- 2.0.0 --=-=-= Content-Type: text/plain -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate --=-=-=--