Since years I'm not maintaining anything of the list below other than some updates when I needed them for some reason. Other people is doing that maintenance on my behalf so I better take me out but for very few packages. Finally!
		
			
				
	
	
		
			21 lines
		
	
	
		
			554 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			554 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, fetchurl, libmikmod, ncurses }:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  name = "mikmod-3.2.8";
 | 
						|
 | 
						|
  src = fetchurl {
 | 
						|
    url = "mirror://sourceforge/mikmod/${name}.tar.gz";
 | 
						|
    sha256 = "1k54p8pn3jinha0f2i23ad15pf1pamibzcxjrbzjbklpcz1ipc6v";
 | 
						|
  };
 | 
						|
 | 
						|
  buildInputs = [ libmikmod ncurses ];
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Tracker music player for the terminal";
 | 
						|
    homepage = http://mikmod.shlomifish.org/;
 | 
						|
    license = stdenv.lib.licenses.gpl2Plus;
 | 
						|
    maintainers = with stdenv.lib.maintainers; [ ];
 | 
						|
    platforms = with stdenv.lib.platforms; linux;
 | 
						|
  };
 | 
						|
}
 |