Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 240f670043a1
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 74721f8440f4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 7, 2020

  1. elan: 0.8.0 -> 0.9.0

    (cherry picked from commit f6f5f6a)
    gebner committed May 7, 2020
    Copy the full SHA
    74721f8 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/applications/science/logic/elan/default.nix
10 changes: 5 additions & 5 deletions pkgs/applications/science/logic/elan/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,17 @@

rustPlatform.buildRustPackage rec {
pname = "elan";
version = "0.7.5";

cargoSha256 = "0q0xlvyyf88dbz43r7kk9v8rrp6hj0nl5i2i9mg6ibk2gphgdv6v";
version = "0.9.0";

src = fetchFromGitHub {
owner = "kha";
repo = "elan";
rev = "v${version}";
sha256 = "1147f3lzr6lgvf580ppspn20bdwnf6l8idh1h5ana0p0lf5a0dn1";
sha256 = "17i8sn53hk03fsawpwfinm1w0nb6lcmdbk8ar2mxyhkxczd45vag";
};

cargoSha256 = "0q0xlvyyf88dbz43r7kk9v8rrp6hj0nl5i2i9mg6ibk2gphgdv6v";

nativeBuildInputs = [ pkgconfig ];

buildInputs = [ curl zlib openssl ];
@@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec {
postInstall = ''
pushd $out/bin
mv elan-init elan
for link in lean leanpkg leanchecker; do
for link in lean leanpkg leanchecker leanc leanmake; do
ln -s elan $link
done
popd