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
		
			
				
	
	
		
			28 lines
		
	
	
		
			722 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			722 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, stdenv, fetchurl, autoconf, automake, allegro }:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  pname = "garden-of-coloured-lights";
 | 
						|
  version = "1.0.9";
 | 
						|
 | 
						|
  buildInputs = [ allegro autoconf automake ];
 | 
						|
 | 
						|
  prePatch = ''
 | 
						|
    noInline='s/inline //'
 | 
						|
    sed -e "$noInline" -i src/stuff.c
 | 
						|
    sed -e "$noInline" -i src/stuff.h
 | 
						|
  '';
 | 
						|
 | 
						|
  src = fetchurl {
 | 
						|
    url = "mirror://sourceforge/garden/${version}/garden-${version}.tar.gz";
 | 
						|
    sha256 = "1qsj4d7r22m5f9f5f6cyvam1y5q5pbqvy5058r7w0k4s48n77y6s";
 | 
						|
  };
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "Old-school vertical shoot-em-up / bullet hell";
 | 
						|
    homepage = "http://garden.sourceforge.net/drupal/";
 | 
						|
    maintainers = with maintainers; [ Profpatsch ];
 | 
						|
    license = licenses.gpl3;
 | 
						|
  };
 | 
						|
 | 
						|
}
 |