summary refs log blame commit diff
path: root/pkgs/games/crrcsim/default.nix
blob: 741f402870a89ac34fc05545a0be47f605bbd3fa (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                        
   
                     
  
                         

                    

                  
                                                                    
                                                                                

    
                 
                                           
    
 



                

                                                      
                                                   
                                                
                                
    
 
{ lib, stdenv, fetchurl, libGLU, libGL, SDL, SDL_mixer, plib, libjpeg }:
let
  version = "0.9.13";
in
stdenv.mkDerivation rec {
  pname = "crrcsim";
  inherit version;

  src = fetchurl {
    url = "mirror://sourceforge/crrcsim/${pname}-${version}.tar.gz";
    sha256 = "abe59b35ebb4322f3c48e6aca57dbf27074282d4928d66c0caa40d7a97391698";
  };

  buildInputs = [
    libGLU libGL SDL SDL_mixer plib libjpeg
  ];

  patches = [
    ./gcc6.patch
  ];

  meta = {
    description = "A model-airplane flight simulator";
    maintainers = with lib.maintainers; [ raskin ];
    platforms = [ "i686-linux" "x86_64-linux" ];
    license = lib.licenses.gpl2;
  };
}