7 stdenv.mkDerivation rec {
8 pname = "power-calibrate";
11 src = fetchFromGitHub {
12 owner = "ColinIanKing";
15 hash = "sha256-DZ6rXbhaSNy3TEX+lwv3tyKQ7BXOZ9ycrff/7pF60j0=";
19 "BINDIR=${placeholder "out"}/bin"
20 "MANDIR=${placeholder "out"}/share/man/man8"
21 "BASHDIR=${placeholder "out"}/share/bash-completion/completions"
25 description = "Tool to calibrate power consumption";
26 mainProgram = "power-calibrate";
27 homepage = "https://github.com/ColinIanKing/power-calibrate";
28 license = licenses.gpl2Plus;
29 platforms = platforms.linux;
30 maintainers = with maintainers; [ dtzWill ];