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

27 lines
842 B
Nix
Raw Normal View History

2012-09-07 12:27:32 +01:00
{ stdenv, fetchurl, gettext, libnl, ncurses, pciutils, pkgconfig, zlib }:
stdenv.mkDerivation rec {
name = "powertop-2.8";
2013-01-15 17:43:53 +00:00
src = fetchurl {
2014-08-14 11:54:21 +01:00
url = "https://01.org/sites/default/files/downloads/powertop/${name}.tar.gz";
sha256 = "0nlwazxbnn0k6q5f5b09wdhw0f194lpzkp3l7vxansqhfczmcyx8";
};
2016-10-13 21:01:59 +01:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext libnl ncurses pciutils zlib ];
postPatch = ''
substituteInPlace src/main.cpp --replace "/sbin/modprobe" "modprobe"
substituteInPlace src/calibrate/calibrate.cpp --replace "/usr/bin/xset" "xset"
'';
2016-10-13 21:01:59 +01:00
meta = with stdenv.lib; {
description = "Analyze power consumption on Intel-based laptops";
2016-10-13 21:01:59 +01:00
homepage = https://01.org/powertop;
license = licenses.gpl2;
maintainers = with maintainers; [ chaoflow fpletz ];
platforms = platforms.linux;
};
}