nixpkgs/pkgs/os-specific/linux/dstat/default.nix
Bjørn Forsman 083d0890f5 More description fixes
* Remove package name
* Start with upper case letter
* Remove trailing period

Also reword some descriptions and move some long descriptions to
longDescription.

I'm not touching generated packages.
2013-10-06 12:01:38 +02:00

28 lines
662 B
Nix

{ 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 = [ ];
};
}