about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ndiswrapper
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-04-03 09:42:22 -0700
committerPhilip Taron <philip.taron@gmail.com>2024-04-03 09:42:22 -0700
commit2f509171e9f6e3083ab6ec78dde03e4e2f31fded (patch)
treef3dd96142e6cb1d56ed8cc020f68778dff91c055 /pkgs/os-specific/linux/ndiswrapper
parent67e2bc037137e4fdcf6b3132a4f54c165726500b (diff)
ndiswrapper: use elfutils instead of abandoned libelf
Diffstat (limited to 'pkgs/os-specific/linux/ndiswrapper')
-rw-r--r--pkgs/os-specific/linux/ndiswrapper/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/ndiswrapper/default.nix b/pkgs/os-specific/linux/ndiswrapper/default.nix
index 2db046e6392f6..39a8d919d8be6 100644
--- a/pkgs/os-specific/linux/ndiswrapper/default.nix
+++ b/pkgs/os-specific/linux/ndiswrapper/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, kernel, perl, kmod, libelf }:
+{ lib, stdenv, fetchurl, kernel, perl, kmod, elfutils }:
 let
   version = "1.63";
 in
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
     sha256 = "1v6b66jhisl110jfl00hm43lmnrav32vs39d85gcbxrjqnmcx08g";
   };
 
-  buildInputs = [ perl libelf ];
+  buildInputs = [ perl elfutils ];
 
   meta = {
     description = "Ndis driver wrapper for the Linux kernel";