summary refs log tree commit diff
path: root/pkgs/development/interpreters/erlang/R22.nix
blob: 7596ad9e2f1098ae447506b2ace8f881e2fd96cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ mkDerivation }:

# How to obtain `sha256`:
# nix-prefetch-url --unpack https://github.com/erlang/otp/archive/OTP-${version}.tar.gz
mkDerivation {
  version = "22.3";
  sha256 = "0srbyncgnr1kp0rrviq14ia3h795b3gk0iws5ishv6rphcq1rs27";

  prePatch = ''
    substituteInPlace make/configure.in --replace '`sw_vers -productVersion`' "''${MACOSX_DEPLOYMENT_TARGET:-10.12}"
    substituteInPlace erts/configure.in --replace '-Wl,-no_weak_imports' ""
  '';
}