mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
3426c88bff
Switch official Erlang versions to use a common builder.
11 lines
241 B
Nix
11 lines
241 B
Nix
{ mkDerivation, fetchurl }:
|
|
|
|
mkDerivation rec {
|
|
version = "19.3";
|
|
sha256 = "0pp2hl8jf4iafpnsmf0q7jbm313daqzif6ajqcmjyl87m5pssr86";
|
|
|
|
prePatch = ''
|
|
substituteInPlace configure.in --replace '`sw_vers -productVersion`' '10.10'
|
|
'';
|
|
}
|