about summary refs log tree commit diff
path: root/pkgs/development/interpreters/erlang/R23.nix
blob: 6928c978fec7152d1f9fdd552458bfe92571f394 (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 = "23.0.2";
  sha256 = "19ly2m0rjay6071r75s9870cm3sph25zd1mvy67l5v4jg7mxdjzy";

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