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