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

24 lines
696 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 {
2014-12-07 16:20:21 +00:00
name = "powertop-2.7";
2013-01-15 17:43:53 +00:00
src = fetchurl {
2014-08-14 10:54:21 +00:00
url = "https://01.org/sites/default/files/downloads/powertop/${name}.tar.gz";
2014-12-07 16:20:21 +00:00
sha256 = "1jkqqr3l1x98m7rgin1dgfzxqwj4vciw9lyyq1kl9bdswa818jwd";
};
2012-09-07 11:27:32 +00:00
buildInputs = [ gettext libnl ncurses pciutils pkgconfig zlib ];
patchPhase = ''
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
'';
meta = {
description = "Analyze power consumption on Intel-based laptops";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.chaoflow ];
platforms = stdenv.lib.platforms.linux;
};
}