1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

fatrace: fix power-usage-report

This commit is contained in:
Tobias Geerinckx-Rice 2015-04-29 21:39:45 +02:00
parent 8ce7626dc7
commit dbbc1b3379

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, python3}:
{ stdenv, fetchurl, python3, which }:
let version = "0.10"; in
stdenv.mkDerivation rec {
@ -9,7 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "0q0cv2bsgf76wypz18v2acgj1crcdqhrhlsij3r53glsyv86xyra";
};
buildInputs = [ python3 ];
buildInputs = [ python3 which ];
postPatch = ''
substituteInPlace power-usage-report \
--replace "'which'" "'${which}/bin/which'"
'';
makeFlagsArray = "PREFIX=$(out)";