summary refs log tree commit diff
path: root/pkgs/development/compilers/dev86/default.nix
blob: 0dfb0be96f93093d25f034548256635075aee5c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "dev86-0.16.18";
  
  src = fetchurl {
    url = http://www.debath.co.uk/dev86/Dev86src-0.16.18.tar.gz;
    sha256 = "1wcg2x8i2fq7kqgazx2il3qfmikyi4kfb23vm45yxlwq72l55604";
  };

  makeFlags = "PREFIX=$(out)";

  # Awful hackery to get dev86 to compile with recent gcc/binutils.
  # See http://bugs.gentoo.org/214964 for some inconclusive
  # discussion.
  preBuild =
    ''
      substituteInPlace makefile.in --replace "-O2" "" --replace "-O" ""
    '';
      
  meta = {
    description = "Linux 8086 development environment";
    homepage = http://www.debath.co.uk/;
  };
}