My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/nixpkgs/pkgs/development/tools/rust/rust-analyzer/default.nix

14 lines
399 B

{ lib, pkgs, callPackage }:
{
rust-analyzer-unwrapped = callPackage ./generic.nix rec {
rev = "2021-01-04";
version = "unstable-${rev}";
sha256 = "1pnydlpbq3xb417db8r5anlaij38a9hcbqh8al4d76czjk3yc6am";
cargoSha256 = "0dy2m0xafl7bvi2gkp8wgca7ha3zmaj5yf1cdg83phjzba6cbbaz";
};
rust-analyzer = callPackage ./wrapper.nix {} {
unwrapped = pkgs.rust-analyzer-unwrapped;
};
}