Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
		
			
				
	
	
		
			27 lines
		
	
	
		
			702 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			702 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, stdenv, fetchFromGitHub }:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  pname = "meslo-lgs-nf";
 | 
						|
  version = "2020-03-22";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "romkatv";
 | 
						|
    repo = "powerlevel10k-media";
 | 
						|
    rev = "32c7d40239c93507277f14522be90b5750f442c9";
 | 
						|
    sha256 = "10hq4whai1rqj495w4n80p0y21am8rihm4rc40xq7241d6dzilrd";
 | 
						|
  };
 | 
						|
 | 
						|
  installPhase = ''
 | 
						|
    mkdir -p $out/share/fonts/truetype
 | 
						|
    cp $src/*.ttf $out/share/fonts/truetype
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "Meslo Nerd Font patched for Powerlevel10k";
 | 
						|
    homepage = "https://github.com/romkatv/powerlevel10k-media";
 | 
						|
    license = licenses.asl20;
 | 
						|
    maintainers = with maintainers; [ bbigras ];
 | 
						|
    platforms = platforms.all;
 | 
						|
  };
 | 
						|
}
 |