aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/interpreters/erlang/R23.nix
blob: d42508c2ef9684b00bdd46e4450dcfa2429cbcaf (plain)
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.3";
  sha256 = "133aw1ffkxdf38na3smmvn5qwwlalh4r4a51793h1wkhdzkyl6mv";

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