2019-11-10 08:44:34 -08:00
|
|
|
{ stdenv, fetchurl, libGLU, libGL, SDL, SDL_mixer, plib, libjpeg }:
|
2014-05-28 04:04:16 -07:00
|
|
|
let
|
2016-06-09 05:16:24 -07:00
|
|
|
version = "0.9.13";
|
2010-11-29 13:12:53 -08:00
|
|
|
in
|
2014-05-28 04:04:16 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "crrcsim";
|
|
|
|
inherit version;
|
2014-05-28 04:04:16 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 14:52:01 -07:00
|
|
|
url = "mirror://sourceforge/crrcsim/${pname}-${version}.tar.gz";
|
2016-06-09 05:16:24 -07:00
|
|
|
sha256 = "abe59b35ebb4322f3c48e6aca57dbf27074282d4928d66c0caa40d7a97391698";
|
2010-11-29 13:12:53 -08:00
|
|
|
};
|
|
|
|
|
2014-05-28 04:04:16 -07:00
|
|
|
buildInputs = [
|
2019-11-10 08:44:34 -08:00
|
|
|
libGLU libGL SDL SDL_mixer plib libjpeg
|
2014-05-28 04:04:16 -07:00
|
|
|
];
|
2010-11-29 13:12:53 -08:00
|
|
|
|
2017-09-01 05:54:58 -07:00
|
|
|
patches = [
|
|
|
|
./gcc6.patch
|
|
|
|
];
|
|
|
|
|
2010-11-29 13:12:53 -08:00
|
|
|
meta = {
|
|
|
|
description = "A model-airplane flight simulator";
|
2020-05-09 02:25:07 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
2018-01-22 06:17:16 -08:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2010-11-29 13:12:53 -08:00
|
|
|
};
|
2014-05-28 04:04:16 -07:00
|
|
|
}
|