nixpkgs/pkgs/tools/system/smartmontools/default.nix
Eelco Dolstra 8d4986e2e8 * Added smartmontools.
svn path=/nixpkgs/trunk/; revision=9466
2007-10-18 13:05:43 +00:00

17 lines
405 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "smartmontools-5.36";
src = fetchurl {
url = mirror://sourceforge/smartmontools/smartmontools-5.36.tar.gz;
sha256 = "1x2bcbyrl5c4djcvnsnasdry498w6slx1gixgynpmlgq4bgjl0zj";
};
meta = {
description = "Tools for monitoring the health of hard drivers";
homepage = http://smartmontools.sourceforge.net/;
license = "GPL";
};
}