Adding dev86 (I'll try to get virtualbox built)

svn path=/nixpkgs/trunk/; revision=13844
This commit is contained in:
Lluís Batlle i Rossell 2009-01-25 14:31:24 +00:00
parent e8847fd2e7
commit e44ec52b45
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "dev86-0.16.17";
src = fetchurl {
url = http://homepage.ntlworld.com/robert.debath/dev86/Dev86src-0.16.17.tar.gz;
md5 = "e7bbfdbe61c2fb964994a087e29b0087";
};
preBuild = "
makeFlags=\"PREFIX=$out\"
";
meta = {
description = "Linux 8086 development environment";
};
}

View File

@ -642,6 +642,10 @@ let
ddrescue = builderDefsPackage (selectVersion ../tools/system/ddrescue "1.8") {};
dev86 = import ../development/compilers/dev86 {
inherit fetchurl stdenv;
};
dnsmasq = import ../tools/networking/dnsmasq {
# TODO i18n can be installed as well, implement it?
inherit fetchurl stdenv;