forked from mirrors/nixpkgs
* Added smartmontools.
svn path=/nixpkgs/trunk/; revision=9466
This commit is contained in:
parent
0be5d907b8
commit
8d4986e2e8
16
pkgs/tools/system/smartmontools/default.nix
Normal file
16
pkgs/tools/system/smartmontools/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -647,6 +647,10 @@ rec {
|
|||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
||||
smartmontools = import ../tools/system/smartmontools {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
sudo = import ../tools/security/sudo {
|
||||
inherit fetchurl stdenv coreutils pam;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue