elan: 2.0.1 -> 3.0.0

Diff: https://github.com/leanprover/elan/compare/v2.0.1...v3.0.0

Changelog: https://github.com/leanprover/elan/blob/v3.0.0/CHANGELOG.md

+5 -3
+5 -3
pkgs/applications/science/logic/elan/default.nix
··· 3 3 4 4 rustPlatform.buildRustPackage rec { 5 5 pname = "elan"; 6 - version = "2.0.1"; 6 + version = "3.0.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "leanprover"; 10 10 repo = "elan"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-gnE0uISKfUqUdmrHI6F7nLOFcsQALjRy584nMRrC68w="; 12 + sha256 = "sha256-VrCEwAoWKhb1qfJUv3OreTzuKEVQADwZpEQIVEhjwHA="; 13 13 }; 14 14 15 - cargoHash = "sha256-rjxJ4bGep5OJUWME+EV5CqEsFY1SuoU07ANL0cbD+DU="; 15 + cargoHash = "sha256-SMKFSu5C5mc3U266hEa6RB3GH5te3jIrUZAzj3YNa2E="; 16 16 17 17 nativeBuildInputs = [ pkg-config makeWrapper ]; 18 18 ··· 61 61 meta = with lib; { 62 62 description = "Small tool to manage your installations of the Lean theorem prover"; 63 63 homepage = "https://github.com/leanprover/elan"; 64 + changelog = "https://github.com/leanprover/elan/blob/v${version}/CHANGELOG.md"; 64 65 license = with licenses; [ asl20 /* or */ mit ]; 65 66 maintainers = with maintainers; [ gebner ]; 67 + mainProgram = "elan"; 66 68 }; 67 69 }