fac9a5c936
svn path=/nixpkgs/branches/stdenv-updates/; revision=19067
14 lines
431 B
Nix
14 lines
431 B
Nix
{lib, stdenv, fetchurl, linuxHeaders , readline, tunctl ? false, mconsole ? false}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit tunctl mconsole;
|
|
buildInputs = lib.optional tunctl linuxHeaders
|
|
++ lib.optional mconsole readline;
|
|
name = "uml-utilities-20040114";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nixos.org/tarballs/uml_utilities_20040114.tar.bz2;
|
|
md5 = "1fd5b791ef32c6a3ed4ae42c4a53a316";
|
|
};
|
|
}
|