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