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-02-02 02:07:14 -08:00
|
|
|
name = "powertop-2.2";
|
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-02-02 02:07:14 -08:00
|
|
|
sha256 = "0a5haxawcjrlwwxx4j5kd4ad05gjmcr13v8gswfwfxcn7fyf2f8k";
|
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
|
|
|
}
|