2007-09-03 14:10:57 +02:00
|
|
|
{stdenv, fetchurl, kernelHeaders , tunctl ? false}:
|
2004-02-18 17:22:31 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2007-09-03 14:10:57 +02:00
|
|
|
inherit tunctl;
|
|
|
|
buildInputs = if tunctl then kernelHeaders else null;
|
2004-02-18 17:22:31 +01:00
|
|
|
name = "uml-utilities-20040114";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/uml_utilities_20040114.tar.bz2;
|
2004-02-18 17:22:31 +01:00
|
|
|
md5 = "1fd5b791ef32c6a3ed4ae42c4a53a316";
|
|
|
|
};
|
|
|
|
}
|