From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Geerinckx-Rice Subject: Re: [PATCH v2] gnu: Add idle3-tools. Date: Wed, 16 Mar 2016 05:02:24 +0100 Message-ID: References: <20160304043356.GA3103@jasmine> <1457398078-15313-1-git-send-email-tobias.geerinckx.rice@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53391) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ag2fC-0004kE-NS for guix-devel@gnu.org; Wed, 16 Mar 2016 00:02:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ag2fB-0007KG-Lm for guix-devel@gnu.org; Wed, 16 Mar 2016 00:02:26 -0400 Received: from mail-ob0-x22d.google.com ([2607:f8b0:4003:c01::22d]:35777) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ag2fB-0007Jz-H0 for guix-devel@gnu.org; Wed, 16 Mar 2016 00:02:25 -0400 Received: by mail-ob0-x22d.google.com with SMTP id fp4so39023988obb.2 for ; Tue, 15 Mar 2016 21:02:25 -0700 (PDT) In-Reply-To: <1457398078-15313-1-git-send-email-tobias.geerinckx.rice@gmail.com> 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: leo@famulari.name Cc: guix-devel Leo, I just realised that I forgot to add you in CC. I'm still learning the finer points of git send-email... (Of course, if you had already seen the updated patch, cheerily ignore this message.) Kind regards, T G-R On 08/03/2016, Tobias Geerinckx-Rice wrote: > * gnu/packages/disk.scm (idle3-tools): New variable. > --- > gnu/packages/disk.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm > index b9240a3..37c7bf5 100644 > --- a/gnu/packages/disk.scm > +++ b/gnu/packages/disk.scm > @@ -171,3 +171,31 @@ transport), SCSI and ATAPI tape drives, and SCSI > enclosures. This utility can > also send commands associated with starting and stopping the media, > loading > and unloading removable media and some other housekeeping functions.") > (license bsd-3))) > + > +(define-public idle3-tools > + (package > + (name "idle3-tools") > + (version "0.9.1") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "mirror://sourceforge/idle3-tools/idle3-tools-" > + version ".tgz")) > + (sha256 > + (base32 > + "00ia7xq9yldxyl9gz0mr4xa568nav14p0fnv82f2rbbkg060cy4p")))) > + (build-system gnu-build-system) > + (arguments > + `(#:tests? #f ;no test suite > + #:phases (modify-phases %standard-phases > + (delete 'configure)) > + #:make-flags '("CC=gcc"))) > + (home-page "http://idle3-tools.sourceforge.net") > + (synopsis "Change or disable Western Digital hard drives' Idle3 > timer") > + (description > + "Idle3-tools provides a utility to get, set, or disable the Idle3 > timer > +present in many Western Digital hard drives. This timer is part of the > +\"IntelliPark\" feature that stops the disk when not in use. > Unfortunately, > +the default timer setting is not well suited to Linux or other *nix > systems, > +and can dramatically shorten the lifespan of the drive if left > unchecked.") > + (license gpl3+))) > -- > 2.7.0 > >