2009-12-21 15:04:45 +01:00
|
|
|
{lib, stdenv, fetchurl, linuxHeaders , readline, tunctl ? false, mconsole ? false}:
|
2004-02-18 17:22:31 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2008-07-26 03:02:27 +02:00
|
|
|
inherit tunctl mconsole;
|
2009-12-21 15:04:45 +01:00
|
|
|
buildInputs = lib.optional tunctl linuxHeaders
|
2008-07-26 03:02:27 +02:00
|
|
|
++ lib.optional mconsole readline;
|
2004-02-18 17:22:31 +01:00
|
|
|
name = "uml-utilities-20040114";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2008-11-14 17:57:19 +01:00
|
|
|
url = http://nixos.org/tarballs/uml_utilities_20040114.tar.bz2;
|
2004-02-18 17:22:31 +01:00
|
|
|
md5 = "1fd5b791ef32c6a3ed4ae42c4a53a316";
|
|
|
|
};
|
|
|
|
}
|