forked from mirrors/nixpkgs
Merge pull request #144043 from Smaug123/lean-darwin
This commit is contained in:
commit
dcc0ba6967
|
@ -1,5 +1,4 @@
|
||||||
{ stdenv, lib, runCommand, patchelf, makeWrapper, pkg-config, curl
|
{ stdenv, lib, runCommand, patchelf, makeWrapper, pkg-config, curl
|
||||||
, fetchpatch
|
|
||||||
, openssl, gmp, zlib, fetchFromGitHub, rustPlatform, libiconv }:
|
, openssl, gmp, zlib, fetchFromGitHub, rustPlatform, libiconv }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
@ -8,16 +7,16 @@ in
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "elan";
|
pname = "elan";
|
||||||
version = "1.1.0";
|
version = "1.2.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "leanprover";
|
owner = "leanprover";
|
||||||
repo = "elan";
|
repo = "elan";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0xmml81krr0i18b14dymfdq43szpzws7qj8k404qab51lkqxyxsb";
|
sha256 = "0q3gay0j45c6cmykbis14gmc7xm89d0gqyz7lnysl0pgr5k20j6b";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-xjJ39hoSDn0VUH0YcL+mQBXbzFcIvZ38dPjBxV/yVNc=";
|
cargoSha256 = "1cklpi40fbiwz8m9p0cknmslpj0vwpr0x8j02vam6sng9dsb50i9";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config makeWrapper ];
|
nativeBuildInputs = [ pkg-config makeWrapper ];
|
||||||
|
|
||||||
|
@ -41,11 +40,6 @@ rustPlatform.buildRustPackage rec {
|
||||||
--subst-var dynamicLinker \
|
--subst-var dynamicLinker \
|
||||||
--subst-var libPath
|
--subst-var libPath
|
||||||
'')
|
'')
|
||||||
# fix build, will be included in 1.1.1
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/leanprover/elan/commit/8d1dec09d67b2ac1768b111d24f1a1cabdd563fa.patch";
|
|
||||||
sha256 = "sha256-yMdnXqycu4VF9EKavZ85EuspvAqvzDSIm5894SB+3+A=";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue