nixpkgs/pkgs/os-specific/linux/powertop/default.nix

20 lines
581 B
Nix
Raw Normal View History

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