about summary refs log tree commit diff
path: root/pkgs/games/gemrb
AgeCommit message (Collapse)AuthorFilesLines
2022-07-30treewide: use isx86 where appropriateAlyssa Ross1-1/+1
2021-06-27gemrb: vlc is only needed on macPeter Hoeg1-4/+12
2021-06-21gemrb: 0.8.7 -> 0.9.0 (#127631)Peter Hoeg1-14/+52
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-03gemrb: stay with python2Frederik Rietdijk1-2/+2
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
2020-10-02treewide: fix redirected urls (run 3)Patrick Hilhorst1-1/+1
Related: - 9fc5e7e473874762fdb1b49d17dcf703d48352c3 - 593e11fd944ce961ecf5425c3540df09e4f52265 - 508ae42a0f64c350036d722b84c2e2905bbc5418 Since the last time I ran this script, the Repology API changed, so I had to adapt the script used in the previous PR. The new API should be more robust, so overall this is a positive (no more grepping the error messages for our relevant data but just a nice json structure). Here's the new script I used: ```sh curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \ | sort | uniq | tee script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ``` I will also add this script to `maintainers/scripts`.
2020-08-30gemrb: 0.8.6 -> 0.8.7Peter Hoeg1-8/+11
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2020-02-06gemrb: 0.8.5 -> 0.8.6R. RyanTM1-2/+2
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-11-02gemrb: add libiconvMatthew Bauer1-2/+3
https://hydra.nixos.org/build/83508053/
2017-12-07treewide: checkMeta fixes for x86_64-linuxVladimír Čunát1-1/+1
2017-11-30gemrb: 0.8.1 -> 0.8.5Peter Hoeg1-20/+22
Additionally: - use SDL2 instead of SDL
2015-05-05fix "libc}/lib" and similar referencesVladimír Čunát1-1/+1
Done mostly without any verification. I didn't bother with libc}/include, as the path is still correct.
2014-12-26Change occurrences of gcc to the more general ccJohn Wiegley1-2/+2
This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
2014-08-25gemrb: bumped to 0.8.1Jaka Kranjc1-2/+2
2014-08-25gemrb: added more meta tags + general maintenanceJaka Kranjc1-2/+14
2013-12-18gemrb: update from 0.6.1 to 0.8.0.1Nixpkgs Monitor1-2/+2
2010-11-14Gemrb: replace the ugly workaround with a less ugly one.Evgeny Egorochkin1-5/+0
svn path=/nixpkgs/trunk/; revision=24684
2010-08-01svn path=/nixpkgs/trunk/; revision=22839Eelco Dolstra1-0/+2
2010-08-01* GemRB updated to 0.6.1.Eelco Dolstra1-7/+16
svn path=/nixpkgs/trunk/; revision=22837
2009-03-03* Cleaned up a lot of description fields that contained newlines.Eelco Dolstra1-2/+1
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
2007-08-27* Support for mirror:// URLs a la Gentoo (NIXPKGS-70). Instead ofEelco Dolstra1-3/+3
fetchurl { url = http://heanet.dl.sourceforge.net/sourceforge/zapping/zapping-0.9.6.tar.bz2; md5 = "8306775c6a11de4d72345b5eee970ea6"; }; you can write fetchurl { url = mirror://sourceforge/zapping/zapping-0.9.6.tar.bz2; md5 = "8306775c6a11de4d72345b5eee970ea6"; }; which causes fetchurl to try the SourceForge mirrors listed in the `sourceforge' attribute in build-support/fetchurl/mirrors.nix. (They're currently tried in sequence, and the lists of mirrors are not configurable yet.) The syntax for mirror URLs is mirror://site/path/to/file, where `site' is currently one of `sourceforge', `gnu' (mirrors of ftp://ftp.gnu.org/pub/gnu) and `kernel' (mirrors of http://www.all.kernel.org/pub/). svn path=/nixpkgs/trunk/; revision=9197
2007-05-14* Added GemRB, a reimplementation of the Infinity Engine.Eelco Dolstra1-0/+20
svn path=/nixpkgs/trunk/; revision=8695