2017-11-17 18:04:23 +01:00
|
|
|
{ mkDerivation, fetchpatch }:
|
2016-06-15 16:15:06 +02:00
|
|
|
|
2017-06-04 20:26:37 +02:00
|
|
|
let
|
2017-11-17 18:04:23 +01:00
|
|
|
rmAndPwdPatch = fetchpatch {
|
2016-07-13 19:41:55 +02:00
|
|
|
url = "https://github.com/erlang/otp/commit/98b8650d22e94a5ff839170833f691294f6276d0.patch";
|
2017-11-17 18:04:23 +01:00
|
|
|
sha256 = "0zjs7as83prgq4d5gaw2cmnajnsprdk8cjl5kklknx0pc2b3hfg5";
|
2016-07-13 19:41:55 +02:00
|
|
|
};
|
|
|
|
|
2017-11-17 18:04:23 +01:00
|
|
|
envAndCpPatch = fetchpatch {
|
2017-06-04 20:26:37 +02:00
|
|
|
url = "https://github.com/erlang/otp/commit/9f9841eb7327c9fe73e84e197fd2965a97b639cf.patch";
|
2017-11-17 18:04:23 +01:00
|
|
|
sha256 = "00fx5wc88ki3z71z5q4xzi9h3whhjw1zblpn09w995ygn07m9qhm";
|
2016-07-13 19:41:55 +02:00
|
|
|
};
|
|
|
|
|
2017-06-04 20:26:37 +02:00
|
|
|
in mkDerivation rec {
|
2017-12-08 10:09:37 +01:00
|
|
|
version = "18.3.4.7";
|
|
|
|
sha256 = "1l66vzbb1vidrmf6gr84l34kgrpb9k7z2170bac4c6aviah9r02l";
|
2017-03-19 05:36:15 +01:00
|
|
|
|
2016-07-13 19:41:55 +02:00
|
|
|
patches = [
|
|
|
|
rmAndPwdPatch
|
|
|
|
envAndCpPatch
|
|
|
|
];
|
2015-06-26 08:59:11 +02:00
|
|
|
}
|