summary refs log tree commit diff
path: root/pkgs/games/flightgear
AgeCommit message (Collapse)AuthorFilesLines
2023-05-15flightgear: 2020.3.17 -> 2020.3.18Kirill Radzikhovskyy1-4/+4
2023-02-05flightgear: 2020.3.13 -> 2020.3.17Kirill Radzikhovskyy1-3/+3
2022-11-13flightgear: Fix missing libcurl depedencyIvan Jager1-2/+2
Without this I get /run/current-system/sw/bin/fgfs: error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory
2022-05-20flightgear: 2020.3.12 -> 2020.3.13Kirill Radzikhovskyy1-3/+3
2022-03-26flightgear: 2020.3.11 -> 2020.3.12Kirill Radzikhovskyy1-3/+3
2022-02-25treewide: switch all desktop file generators to new APIK9001-1/+1
Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
2021-11-02flightgear: 2020.3.8 -> 2020.3.11marius david1-3/+3
2021-08-03flightgear: deprecate phasesFelix Buehler1-1/+1
2021-04-20flightgear: 2020.3.4 -> 2020.3.8marius david1-4/+4
2021-02-24flightgear: update icon source urlAaron Andersen1-1/+1
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-03treewide: remove enableParallelBuilding = true if using cmakeBen Siraphob1-2/+0
2020-12-17flightgear: 2020.1.3 -> 2020.3.4wucke131-3/+3
2020-07-01Rename flightgear-{base -> data}Manuel Bärenz1-1/+1
2020-07-01flightgear: 2019.1.1 -> 2020.1.2, simgear: 2020.1.{1 -> 2}Manuel Bärenz1-3/+3
2020-05-09treewide: remove the-kenny from maintainersJörg Thalheim1-1/+1
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
2019-11-18treewide: Get rid of libGLU_combinedadisbladis1-2/+2
2019-09-08treewide: remove redundant quotesvolth1-1/+1
2019-08-17treewide: name -> pnamevolth1-1/+2
2019-08-06flightgear: 2018.3.1 -> 2019.1.1Aaron Andersen1-10/+10
2019-07-05wrapQtAppsHook: Remove ad hoc Qt wrappersThomas Tuegel1-5/+4
2019-04-09flightgear: 2018.2.2 -> 2018.3.1Aaron Andersen1-4/+4
2019-01-04treewide/xorg: replace *proto with xorgprotoLengyel Balazs1-2/+2
2018-11-01flightgear & simgear: 2017.3.1 -> 2018.2.2Aaron Andersen1-4/+4
2018-02-24treewide: transition mesa to libGLU_combinedAlexander V. Nikolaev1-2/+2
2017-09-28flightgear: 2016.4.4 -> 2017.3.1 for CVE-2017-13709Franz Pletz1-7/+8
2017-01-18flightgear, simgear: 2016.4.3 -> 2016.4.4Moritz Ulrich1-4/+5
2016-12-24flightgear: 3.4.0 -> 2016.4.3.Moritz Ulrich1-16/+31
2015-09-27flightgear: build with Qt 5.5Thomas Tuegel1-2/+2
2015-03-24qt5: make qt-5.4.1 defaultThomas Tuegel1-1/+1
2015-03-17flightgear: bump version to 3.4 (close #6385)Longrin Wischnewski1-6/+6
- openscenegraph: bump version to 3.2.1: http://www.openscenegraph.org/index.php/download-section/stable-releases - remove obsolete patch - simgear: bump version to 3.4.0 - flightgear: add qt5 as build input
2014-05-28flightgear & simgear: Bump to 3.0.0.Moritz Ulrich1-7/+7
2014-01-15FlightGear: Update to 2.12.1.Moritz Ulrich1-5/+5
2013-11-05Set meta.hydraPlatforms instead of meta.platforms for some packagesEelco Dolstra1-1/+2
2013-10-21flightgear: add .desktop fileBjørn Forsman1-0/+21
2013-10-06flightgear: 2.10.0 -> 2.12.0 (and make it run again)Bjørn Forsman1-48/+32
The current FlightGear expression doesn't work: bash$ nix-build -A flightgear /nix/store/3c47sibzb9h1vhnn0gnh692hkpjc5p5v-flightgear-2.10.0 bash$ ./result/bin/fgfs ERROR: The path '/nix/store/3c47sibzb9h1vhnn0gnh692hkpjc5p5v-flightgear-2.10.0/lib/FlightGear' does not exist in the file system. Base package check failed: Version [none] found at: /nix/store/3c47sibzb9h1vhnn0gnh692hkpjc5p5v-flightgear-2.10.0/lib/FlightGear Version 2.10.0 is required. Please upgrade/downgrade base package and set the path to your fgdata with --fg-root=path_to_your_fgdata We could probably make the 2.10.0 version run, but I had already upgraded it to 2.12.0 before I made it work. It seems only the data dir configuration was wrong/missing: FG_DATA_DIR="$out/share/FlightGear/". Simgear must be in version sync with flightgear, hence the upgrade. Most of the diff is because I rewrote the flightgear expression to what I think is the "new style". I wanted to add a preConfigure phase but didn't understand why this expression had custom phases. So I just rewrote the whole thing to something I consider more readable.
2013-06-17flightgear: Remove from channelEelco Dolstra1-2/+1
It's 264 MiB compressed...
2013-02-23flightgear: fix build via update; but no testing, hope it worksVladimír Čunát1-10/+10
2012-01-18* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra1-1/+1
function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2011-04-09Adding FlightGearMichael Raskin1-0/+59
svn path=/nixpkgs/trunk/; revision=26770