nixpkgs/pkgs/tools/system/smartmontools/default.nix
Eelco Dolstra 64b833face * smartmontools updated to 5.38.
svn path=/nixpkgs/trunk/; revision=16635
2009-08-10 06:44:08 +00:00

17 lines
400 B
Nix

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