2018-07-21 00:44:44 +00:00
|
|
|
{ mkDerivation, fetchpatch }:
|
2016-07-22 23:07:41 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
mkDerivation {
|
2021-04-12 17:59:37 +00:00
|
|
|
version = "19.3.6.13";
|
|
|
|
sha256 = "1zbg54p7pdr8bjyrxvi7vs41vgamqa8lsynnm6ac6845q0xwpwid";
|
2016-07-22 23:07:41 +00:00
|
|
|
|
2017-10-14 10:36:15 +00:00
|
|
|
patches = [
|
|
|
|
# macOS 10.13 crypto fix from OTP-20.1.2
|
|
|
|
(fetchpatch {
|
|
|
|
name = "darwin-crypto.patch";
|
|
|
|
url = "https://github.com/erlang/otp/commit/882c90f72ba4e298aa5a7796661c28053c540a96.patch";
|
|
|
|
sha256 = "1gggzpm8ssamz6975z7px0g8qq5i4jqw81j846ikg49c5cxvi0hi";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-01-10 07:09:53 +00:00
|
|
|
prePatch = ''
|
2019-08-14 22:54:56 +00:00
|
|
|
substituteInPlace configure.in --replace '`sw_vers -productVersion`' "''${MACOSX_DEPLOYMENT_TARGET:-10.12}"
|
2017-01-10 07:09:53 +00:00
|
|
|
'';
|
2016-07-22 23:07:41 +00:00
|
|
|
}
|