From d937a1bae0bf3925b52053687c1e49c2343dd09d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 20 Aug 2009 23:40:50 +0000 Subject: * at 3.1.11. svn path=/nixpkgs/trunk/; revision=16793 --- pkgs/tools/system/at/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'pkgs/tools/system/at') diff --git a/pkgs/tools/system/at/default.nix b/pkgs/tools/system/at/default.nix index 3acc5fd877dd..eae0c9843b00 100644 --- a/pkgs/tools/system/at/default.nix +++ b/pkgs/tools/system/at/default.nix @@ -1,20 +1,21 @@ { fetchurl, stdenv, bison, flex, pam, ssmtp }: stdenv.mkDerivation { - name = "at-3.1.10.1"; + name = "at-3.1.11"; src = fetchurl { # Debian is apparently the last location where it can be found. - url = mirror://debian/pool/main/a/at/at_3.1.10.2.tar.gz; - sha256 = "03v96zil1xs15px26xmhxsfn7wx84a3zwpnwmp69hn5s911api1m"; + url = mirror://debian/pool/main/a/at/at_3.1.11.orig.tar.gz; + sha256 = "0n995h57x87xg10n8rkq06lynnb3syynfngwspfg91cp22cphycb"; }; patches = [ ./install.patch ]; - buildInputs = [ bison flex pam - - # `configure' and `atd' want the `sendmail' command. - ssmtp ]; + buildInputs = + [ bison flex pam + # `configure' and `atd' want the `sendmail' command. + ssmtp + ]; configurePhase = '' export PATH="${ssmtp}/sbin:$PATH" -- cgit 1.4.1