mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
added gsmartcontrol 0.8.7 to nixpkgs
This commit is contained in:
parent
b70d41d309
commit
74196058ee
23
pkgs/tools/misc/gsmartcontrol/default.nix
Normal file
23
pkgs/tools/misc/gsmartcontrol/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ fetchurl, stdenv, smartmontools, gtk, gtkmm, libglademm, pkgconfig, pcre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version="0.8.7";
|
||||
name = "gsmartcontrol";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://artificialtime.com/gsmartcontrol/gsmartcontrol-${version}.tar.bz2";
|
||||
sha256 = "1ipykzqpfvlr84j38hr7q2cag4imrn1gql10slp8bfrs4h1si3vh";
|
||||
};
|
||||
|
||||
buildInputs = [ smartmontools gtk gtkmm libglademm pkgconfig pcre ];
|
||||
|
||||
#installTargets = "install datainstall";
|
||||
|
||||
meta = {
|
||||
description = "GSmartControl is a graphical user interface for smartctl (from smartmontools package), which is a tool for querying and controlling SMART (Self-Monitoring, Analysis, and Reporting Technology) data on modern hard disk drives.";
|
||||
homepage = http://gsmartcontrol.berlios.de;
|
||||
license = "GPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -8145,6 +8145,10 @@ let
|
||||
inherit (gnome) gnomedocutils;
|
||||
};
|
||||
|
||||
gsmartcontrol = callPackage ../tools/misc/gsmartcontrol {
|
||||
inherit (gnome) libglademm;
|
||||
};
|
||||
|
||||
gtypist = callPackage ../games/gtypist { };
|
||||
|
||||
hexen = callPackage ../games/hexen { };
|
||||
|
Loading…
Reference in New Issue
Block a user