summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/os-specific/linux/sysstat/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/sysstat/default.nix b/pkgs/os-specific/linux/sysstat/default.nix
index 6c6abf8bb388..998670712d65 100644
--- a/pkgs/os-specific/linux/sysstat/default.nix
+++ b/pkgs/os-specific/linux/sysstat/default.nix
@@ -1,18 +1,18 @@
 {stdenv, fetchurl, gettext}:
    
 stdenv.mkDerivation {
-  name = "sysstat-8.0.0";
+  name = "sysstat-8.0.4.1";
    
   src = fetchurl {
-    url = http://perso.orange.fr/sebastien.godard/sysstat-8.0.0.tar.bz2;
-    md5 = "cb579d5c5d5bc1386cc09193e15765bf";
+    url = http://perso.orange.fr/sebastien.godard/sysstat-8.0.4.1.tar.bz2;
+    sha256 = "17bzyz6bp63br4pns40ypc0qac0299lh90p7fhis5sn31sx811rf";
   };
 
   buildInputs = [gettext];
 
-  preConfigure = "
+  preConfigure = ''
     export PATH_CP=$(type -tp cp)
     export PATH_CHKCONFIG=/no-such-program
     makeFlagsArray=(SA_DIR=$out/var/log/sa SYSCONFIG_DIR=$out/etc CHOWN=true IGNORE_MAN_GROUP=y)
-  ";
+  '';
 }