1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

erlang: 19.0.2 -> 19.1

This commit is contained in:
Andrey Pavlov 2016-09-23 10:20:17 +03:00
parent cdec20ac58
commit 0a1ae92bb9

View file

@ -20,7 +20,7 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "erlang-" + version + "${optionalString odbcSupport "-odbc"}"
+ "${optionalString javacSupport "-javac"}";
version = "19.0.2";
version = "19.1";
# Minor OTP releases are not always released as tarbals at
# http://erlang.org/download/ So we have to download from
@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
owner = "erlang";
repo = "otp";
rev = "OTP-${version}";
sha256 = "1vsykghhzpgmc42jwj48crl11zzzpvrqvh2lk8lxfqbflzflxm6j";
sha256 = "0nnjj069d5pjhgcd8vvqbrkjdac3p1v4s3zb59i4h73vg7f5p736";
};
buildInputs =
@ -42,15 +42,6 @@ stdenv.mkDerivation rec {
debugInfo = enableDebugInfo;
envAndCpPatch = fetchurl {
url = "https://github.com/binarin/otp/commit/9f9841eb7327c9fe73e84e197fd2965a97b639cf.patch";
sha256 = "10h5348p6g279b4q01i5jdqlljww5chcvrx5b4b0dv79pk0p0m9f";
};
patches = [
envAndCpPatch
];
preConfigure = ''
./otp_build autoconf
'';