mirror of
				https://github.com/NotAShelf/microfetch.git
				synced 2025-11-04 07:32:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			324 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  mkShell,
 | 
						|
  rust-analyzer-unwrapped,
 | 
						|
  rustfmt,
 | 
						|
  clippy,
 | 
						|
  cargo,
 | 
						|
  rustc,
 | 
						|
  gcc,
 | 
						|
  rustPlatform,
 | 
						|
  gnuplot,
 | 
						|
}:
 | 
						|
mkShell {
 | 
						|
  strictDeps = true;
 | 
						|
 | 
						|
  nativeBuildInputs = [
 | 
						|
    cargo
 | 
						|
    rustc
 | 
						|
    gcc
 | 
						|
    gnuplot
 | 
						|
 | 
						|
    rust-analyzer-unwrapped
 | 
						|
    rustfmt
 | 
						|
    clippy
 | 
						|
  ];
 | 
						|
 | 
						|
  env.RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
 | 
						|
}
 |