Adding dev86 (I'll try to get virtualbox built)
svn path=/nixpkgs/trunk/; revision=13844
This commit is contained in:
parent
e8847fd2e7
commit
e44ec52b45
17
pkgs/development/compilers/dev86/default.nix
Normal file
17
pkgs/development/compilers/dev86/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user