Skip to content

Commit

Permalink
linuxPackages.vhba: fix add libelf build input
Browse files Browse the repository at this point in the history
  • Loading branch information
bendlas committed Jan 15, 2018
1 parent af9724d commit 9059c93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/misc/emulators/cdemu/vhba.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, kernel }:
{ stdenv, fetchurl, kernel, libelf }:

stdenv.mkDerivation rec {
name = "vhba-${version}";
Expand All @@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
};

makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ];
buildInputs = [ libelf ];

hardeningDisable = [ "pic" ];

Expand Down

0 comments on commit 9059c93

Please sign in to comment.