Skip to content

Stupremee/rust-analyzer-overlay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Analyzer Overlay

Nix overlay for the latest Rust Analyzer version.

How to use this overlay

Install global on your system

Create ~/.config/nixpkgs/overlays directory and create a file named rust-analyzer.nix inside this directory and place the following inside:

import (builtins.fetchTarball {
  url = https://github.com/Stupremee/rust-analyzer-overlay/archive/main.tar.gz;
})

Using Nix flakes

{
  # ...
  inputs.rust-analyzer-overlay.url = "github:Stupremee/rust-analyzer-overlay";

  outputs = { self, nixpkgs, rust-analyzer-overlay }:
    let
      pkgs = import <nixpkgs> {
        overlays = [ rust-analyzer-overlay.overlay ];
      };
    in {
      # ...
    };
}

About

Nix overlay for the latest Rust Analyzer version.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published