nixpkgs/pkgs/os-specific/linux/powertop/default.nix
Lluís Batlle i Rossell af3e5b5050 Updating powertop.
svn path=/nixpkgs/trunk/; revision=26426
2011-03-18 20:44:35 +00:00

12 lines
338 B
Nix

{stdenv, fetchurl, ncurses, gettext}:
stdenv.mkDerivation {
name = "powertop-1.13";
src = fetchurl {
url = http://www.lesswatts.org/projects/powertop/download/powertop-1.13.tar.gz;
sha256 = "164dqp6msdaxpi2bmvwawasyrf1sfvanlc9ddp97v1wnjh46dj1b";
};
patches = [./powertop-1.13.patch];
buildInputs = [ncurses gettext];
}