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