add package dstat

This commit is contained in:
Mathijs Kwik 2012-08-05 14:55:44 +02:00
parent aed4ee4025
commit e8afe3c1c8
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
name = "dstat-0.7.2";
src = fetchurl {
url = "http://dag.wieers.com/home-made/dstat/${name}.tar.bz2";
sha256 = "1bivnciwlamnl9q6i5ygr7jhs8pp833z2bkbrffvsa60szcqda9l";
};
buildInputs = [ ];
patchPhase = ''
sed -i -e 's|/usr/bin/env python|${python}/bin/python|' \
-e "s|/usr/share/dstat|$out/share/dstat|" dstat
'';
makeFlags = "prefix=$(out)";
meta = {
homepage = http://dag.wieers.com/home-made/dstat/;
description = "Versatile resource statistics tool.";
license = "GPLv2";
platforms = stdenv.lib.platforms.linux;
maintainers = [ ];
};
}

View File

@ -5494,6 +5494,8 @@ let
drbd = callPackage ../os-specific/linux/drbd { };
dstat = callPackage ../os-specific/linux/dstat { };
libuuid =
if crossSystem != null && crossSystem.config == "i586-pc-gnu"
then (utillinux // {