summary refs log tree commit diff
path: root/pkgs/tools/system/smartmontools/default.nix
blob: 46821673b9c39846b84fcc7e876c3a76b86c2e94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{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";
  };
}