088a6817db
dnsmasq, uisp, fltk libixp_for_wmii, acerhk kernel module, reiserfsprogs, radeontools, msmtp, procmail, pstree, gxemul changed: umlutilities to also support building tunctl optionally (needing kernel header files) wmii updated and wmiimenu added svn path=/nixpkgs/trunk/; revision=9242
13 lines
358 B
Nix
13 lines
358 B
Nix
{stdenv, fetchurl, kernelHeaders , tunctl ? false}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit tunctl;
|
|
buildInputs = if tunctl then kernelHeaders else null;
|
|
name = "uml-utilities-20040114";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/uml_utilities_20040114.tar.bz2;
|
|
md5 = "1fd5b791ef32c6a3ed4ae42c4a53a316";
|
|
};
|
|
}
|