20 lines
		
	
	
		
			554 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			554 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{stdenv, fetchurl, gtk, pkgconfig, intltool } :
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  name = "pioneers-0.12.3";
 | 
						|
  src = fetchurl {
 | 
						|
    url = "mirror://sourceforge/pio/${name}.tar.gz";
 | 
						|
    sha256 = "1yqypk5wmia8fqyrg9mn9xw6yfd0fpkxj1355csw1hgx8mh44y1d";
 | 
						|
  };
 | 
						|
 | 
						|
  buildInputs = [ gtk pkgconfig intltool ];
 | 
						|
 | 
						|
  meta = {
 | 
						|
    homepage = http://pio.sourceforge.net/;
 | 
						|
    license = "GPLv2+";
 | 
						|
    description = "Addicting game based on The Settlers of Catan";
 | 
						|
    maintainers = with stdenv.lib.maintainers; [viric];
 | 
						|
    platforms = with stdenv.lib.platforms; linux;
 | 
						|
  };
 | 
						|
}
 |