about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/rust-analyzer/default.nix
blob: 09e24775a3510c69dd470948f2ca269fc735b7e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, callPackage, CoreServices }:

{
  rust-analyzer-unwrapped = callPackage ./generic.nix rec {
    rev = "2021-03-15";
    version = "unstable-${rev}";
    sha256 = "150gydm0mg72bbhgjjks8qc5ldiqyzhai9z4yfh4f1s2bwdfh3yf";
    cargoSha256 = "10l0lk5p11002q59dqa5yrrz6n6s11i7bmr1wnl141bxqvm873q2";

    inherit CoreServices;
  };

  rust-analyzer = callPackage ./wrapper.nix {} {
    unwrapped = pkgs.rust-analyzer-unwrapped;
  };
}