lol
1{ fetchurl, stdenv, smartmontools, gtkmm2, libglademm, pkgconfig, pcre }:
2
3stdenv.mkDerivation rec {
4 version="0.8.7";
5 name = "gsmartcontrol-${version}";
6
7 src = fetchurl {
8 url = "http://artificialtime.com/gsmartcontrol/gsmartcontrol-${version}.tar.bz2";
9 sha256 = "1ipykzqpfvlr84j38hr7q2cag4imrn1gql10slp8bfrs4h1si3vh";
10 };
11
12 nativeBuildInputs = [ pkgconfig ];
13 buildInputs = [ smartmontools gtkmm2 libglademm pcre ];
14
15 #installTargets = "install datainstall";
16
17 meta = {
18 description = "Hard disk drive health inspection tool";
19 longDescription = ''
20 GSmartControl is a graphical user interface for smartctl (from
21 smartmontools package), which is a tool for querying and controlling
22 SMART (Self-Monitoring, Analysis, and Reporting Technology) data on
23 modern hard disk drives.
24
25 It allows you to inspect the drive's SMART data to determine its health,
26 as well as run various tests on it.
27 '';
28 homepage = http://gsmartcontrol.sourceforge.net/;
29 license = stdenv.lib.licenses.gpl2Plus;
30 maintainers = with stdenv.lib.maintainers; [qknight];
31 platforms = with stdenv.lib.platforms; linux;
32 };
33}