nixpkgs/pkgs/games/crrcsim/default.nix

29 lines
665 B
Nix
Raw Normal View History

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";
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";
};
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
];
2017-09-01 05:54:58 -07:00
patches = [
./gcc6.patch
];
meta = {
description = "A model-airplane flight simulator";
maintainers = with stdenv.lib.maintainers; [ raskin ];
platforms = [ "i686-linux" "x86_64-linux" ];
license = stdenv.lib.licenses.gpl2;
};
2014-05-28 04:04:16 -07:00
}