Skip to content

Commit

Permalink
ndiswrapper: Use kernel.dev instead of kernelDev
Browse files Browse the repository at this point in the history
Doesn't build, out of date

Signed-off-by: Shea Levy <shea@shealevy.com>
  • Loading branch information
shlevy committed Mar 26, 2013
1 parent d10e08b commit 6f1c485
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/ndiswrapper/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ stdenv, fetchurl, kernelDev, perl }:
{ stdenv, fetchurl, kernel, perl }:

stdenv.mkDerivation {
name = "ndiswrapper-1.56-${kernelDev.version}";
name = "ndiswrapper-1.56-${kernel.version}";

# need at least .config and include
kernel = kernelDev;
kernel = kernel.dev;

buildPhase = "
echo make KBUILD=$(echo \$kernel/lib/modules/*/build);
Expand All @@ -27,7 +27,7 @@ stdenv.mkDerivation {
sha256 = "10yqg1a08v6z1qm1qr1v4rbhl35c90gzrazapr09vp372hky8f57";
};

buildInputs = [ kernelDev perl ];
buildInputs = [ perl ];

# this is a patch against svn head, not stable version
patches = [./prefix.patch];
Expand Down

0 comments on commit 6f1c485

Please sign in to comment.