summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ndiswrapper/default.nix
blob: 00672cc29b5b75c6b0074dd6cd0da47502312c88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
args: with args;
stdenv.mkDerivation {
  name = "ndiswrapper-1.53-stable";

  # need at least .config and include 
  inherit kernel;

  buildPhase = "
    echo make KBUILD=$(echo \$kernel/lib/modules/*/build);
    echo -n $kernel/lib/modules/*/build > kbuild_path
    make KBUILD=$(echo \$kernel/lib/modules/*/build);
  ";

  installPhase = "make install KBUILD=$(cat kbuild_path) DESTDIR=$out";

  # should we use unstable? 
  src = args.fetchurl {
    url = http://downloads.sourceforge.net/ndiswrapper/ndiswrapper-1.53.tar.gz;
    sha256 = "00622nxa3q9n8v7qdz274d0nzz9r13lx77xi27s5bnk0mkila03q";
  };

  buildInputs =[kernel];

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

  meta = { 
      description = "Ndis driver wrapper for the Linux kernel";
      homepage = http://sourceforge.net/projects/ndiswrapper;
      license = "GPL";
  };
}