turbostat: requires libcap to build

This commit is contained in:
Dominik Honnef 2020-07-08 05:58:27 +02:00
parent ffbbdf247a
commit 4415355426

View File

@ -1,9 +1,10 @@
{ stdenv, kernel }: { stdenv, kernel, libcap }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "turbostat"; pname = "turbostat";
inherit (kernel) src version; inherit (kernel) src version;
buildInputs = [ libcap ];
makeFlags = [ "PREFIX=${placeholder "out"}" ]; makeFlags = [ "PREFIX=${placeholder "out"}" ];
postPatch = '' postPatch = ''