2007-09-23 12:59:54 +02:00
|
|
|
{stdenv, fetchurl, ncurses}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-03-03 22:44:17 +01:00
|
|
|
name = "powertop-1.9";
|
2007-09-23 12:59:54 +02:00
|
|
|
src = fetchurl {
|
2008-03-03 22:44:17 +01:00
|
|
|
url = http://www.lesswatts.org/projects/powertop/download/powertop-1.9.tar.gz;
|
|
|
|
sha256 = "15150ra7n0q1nfij4ax3dnlplyjakm2ipx246xi3wsj3qc99m2a1";
|
2007-09-23 12:59:54 +02:00
|
|
|
};
|
|
|
|
patches = [./powertop-1.8.patch];
|
|
|
|
buildInputs = [ncurses];
|
|
|
|
}
|