3
0
Fork 0
forked from mirrors/nixpkgs

* Added smartmontools.

svn path=/nixpkgs/trunk/; revision=9466
This commit is contained in:
Eelco Dolstra 2007-10-18 13:05:43 +00:00
parent 0be5d907b8
commit 8d4986e2e8
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -647,6 +647,10 @@ rec {
inherit fetchurl stdenv ncurses; inherit fetchurl stdenv ncurses;
}; };
smartmontools = import ../tools/system/smartmontools {
inherit fetchurl stdenv;
};
sudo = import ../tools/security/sudo { sudo = import ../tools/security/sudo {
inherit fetchurl stdenv coreutils pam; inherit fetchurl stdenv coreutils pam;
}; };