nixpkgs/pkgs/os-specific/linux/ndiswrapper/default.nix
Yury G. Kudryashov 6e8ff2b24b Merged with trunk again
svn path=/nixpkgs/branches/stdenv-updates/; revision=10155
2008-01-15 14:32:10 +00:00

29 lines
712 B
Nix

args: with args;
stdenv.mkDerivation {
name = "ndiswrapper-1.49-stable";
# need at least .config and include
inherit kernel;
buildPhase = "
make KBUILD=\$kernel/lib/modules/*/build;
";
# should we use unstable?
src = fetchurl {
url = http://kent.dl.sourceforge.net/sourceforge/ndiswrapper/ndiswrapper-1.49.tar.gz;
sha256 = "1b9nqkk7gv6gffzj9b8mjy5myxf2afwpyr2n5wbfsylf15dvvvjr";
};
buildInputs =[kernelHeaders 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";
};
}