shithub: mc

ref: d52fd3b32109f12e529a7f5e380c5ee8f06aefcf
dir: /support/pkg/default.nix/

View raw version
{ pkgs ? (import <nixpkgs> {})
, stdenv ? pkgs.stdenv
, bison ? pkgs.bison
, binutils ? pkgs.binutils
, fetchurl ? pkgs.fetchurl
}:

stdenv.mkDerivation rec {
  name = "myrddin";

  src = ../..;

  buildInputs = [ bison binutils ];

  preBuild = ''
    make bootstrap
  '';

  postPatch = ''
    substituteInPlace "mbld/opts.myr" --replace '"ld"' '"${binutils}/bin/ld"'
    substituteInPlace "configure"     --replace '"ld"' '"${binutils}/bin/ld"'
    substituteInPlace "mbld/opts.myr" --replace '"as"' '"${binutils}/bin/as"'
    substituteInPlace "configure"     --replace '"as"' '"${binutils}/bin/as"'
  '';
}