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 {
|
2013-02-02 11:07:14 +01:00
|
|
|
name = "powertop-2.2";
|
2013-01-15 18:43:53 +01:00
|
|
|
|
2007-09-23 12:59:54 +02:00
|
|
|
src = fetchurl {
|
2012-09-07 13:27:32 +02:00
|
|
|
url = "https://01.org/powertop/sites/default/files/downloads/${name}.tar.gz";
|
2013-02-02 11:07:14 +01:00
|
|
|
sha256 = "0a5haxawcjrlwwxx4j5kd4ad05gjmcr13v8gswfwfxcn7fyf2f8k";
|
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";
|
|
|
|
license = "GPLv2";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
2007-09-23 12:59:54 +02:00
|
|
|
}
|