2012-09-07 04:27:32 -07:00
|
|
|
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:
|
2007-09-23 03:59:54 -07:00
|
|
|
|
2012-06-11 03:28:21 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2013-12-22 19:22:37 -08:00
|
|
|
name = "powertop-2.5";
|
2013-01-15 09:43:53 -08:00
|
|
|
|
2007-09-23 03:59:54 -07:00
|
|
|
src = fetchurl {
|
2012-09-07 04:27:32 -07:00
|
|
|
url = "https://01.org/powertop/sites/default/files/downloads/${name}.tar.gz";
|
2013-12-22 19:22:37 -08:00
|
|
|
sha256 = "02rwqbpasdayl201v0549gbp2f82rd0hqiv3i111r7npanjhhb4b";
|
2007-09-23 03:59:54 -07:00
|
|
|
};
|
2012-06-11 03:28:21 -07:00
|
|
|
|
2012-09-07 04:27:32 -07:00
|
|
|
buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ];
|
2012-06-11 03:28:21 -07:00
|
|
|
|
2011-10-13 01:53:47 -07:00
|
|
|
meta = {
|
|
|
|
description = "Analyze power consumption on Intel-based laptops";
|
|
|
|
license = "GPLv2";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2007-09-23 03:59:54 -07:00
|
|
|
}
|