nixpkgs/pkgs/tools/system/smartmontools/default.nix
Peter Simons 8e79697a84 smartmontools: updated to version 5.41
svn path=/nixpkgs/trunk/; revision=27671
2011-07-08 10:51:18 +00:00

20 lines
429 B
Nix

{stdenv, fetchurl}:
let
name = "smartmontools-5.41";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
sha256 = "173eb14e3253a30230f38c7e684085bcae7fa021efff58bdf94c2702ac76fa32";
};
meta = {
description = "Tools for monitoring the health of hard drivers";
homepage = http://smartmontools.sourceforge.net/;
license = "GPL";
};
}