about summary refs log tree commit diff
path: root/pkgs/misc/emulators/higan
Commit message (Collapse)AuthorAge
* treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* treewide: use runtimeShell instead of stdenv.shell whenever possibleJörg Thalheim2019-02-26
| | | | | | | | | Whenever we create scripts that are installed to $out, we must use runtimeShell in order to get the shell that can be executed on the machine we create the package for. This is relevant for cross-compiling. The only use case for stdenv.shell are scripts that are executed as part of the build system. Usages in checkPhase are borderline however to decrease the likelyhood of people copying the wrong examples, I decided to use runtimeShell as well.
* Fix higan typoAlex Leferry 22018-10-27
|
* higan: small fixesAndersonTorres2018-10-06
|
* treewide: http -> https sources (#42676)Silvan Mosberger2018-06-28
| | | | | | | | | * treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
* treewide: transition mesa to libGLU_combinedAlexander V. Nikolaev2018-02-24
|
* higan: 105 -> 106AndersonTorres2017-11-28
|
* higan: 104 -> 105AndersonTorres2017-10-17
|
* Higan: 103 -> 104AndersonTorres2017-09-03
|
* Merge pull request #27881 from mimadrid/fix/http-httpsFrederik Rietdijk2017-08-13
|\ | | | | Update homepage attributes: http -> https
| * Update homepage attributes: http -> httpsmimadrid2017-08-03
| | | | | | | | | | Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
* | higan: 102 -> 103AndersonTorres2017-08-07
|/
* higan: 101 -> 102 (#22942)Anderson Torres2017-02-19
|
* treewide: explicitly specify gtk and related package versionsKirill Boltaev2016-09-12
|
* Higan: 100 -> 101 (#17903)Anderson Torres2016-08-22
|
* higan: 099 -> 100AndersonTorres2016-07-30
|
* Merge branch 'staging'Vladimír Čunát2016-06-29
|\ | | | | | | This includes a security update of expat.
* | higan: v098 -> v099AndersonTorres2016-06-25
| |
* | Revert "Merge branch 'staging'" due to glibcVladimír Čunát2016-06-23
|/ | | | | | | | The main output started to retain dependency on bootstrap-tools; see https://github.com/NixOS/nixpkgs/pull/15867#issuecomment-227949096 This reverts commit c05d8295988697adbb920a7b4a999ae3670c5504, reversing changes made to f073df60d60444c30c49cb26d6b187a4100b41fe.
* treewide: fix #include errors after gcc-5.4Vladimír Čunát2016-06-19
| | | | They were mostly missing <cmath> or <math.h>.
* higan: 096 -> 098AndersonTorres2016-04-15
| | | | | | | Now without some options, reflecting upstream development. In special, no GTK building (as it was obsoleted on 096) and no profile selecion, because it will be obsoleted on next release.
* cc-wrapper: add option to skip flags for native optimizationsNikolay Amiantov2016-03-24
|
* Higan: 095 -> 096AndersonTorres2015-12-23
|
* Higan: 094 -> 095AndersonTorres2015-12-18
| | | | | | | | In order to increase portability and flexibility, now the build phase explicitly sets "compiler=c++" as a make parameter. Further, there is a link "higan" for backwards compatibility; higan was split in icarus (the game ROMS database manager) and tomoko (the emulator itself).
* Use libpulseaudio instead of pulseaudioWilliam A. Kennington III2015-05-29
|
* Higan: minor updateAndersonTorres2015-04-06
| | | | Updating source url
* Higan: adding config.higan.{guiToolkit,profile} optionsAndersonTorres2014-10-01
| | | | | | | | Now we can parametrize Higan locally. By default, guiToolkit = "gtk" and profile = "performance" (the accuracy profile is seriously slow on my machine :) ) Closes #4340
* Higan: adding "profile" and "gui" building optionsAndersonTorres2014-09-20
| | | | | | Also, removing builder.sh and copying everything to Nix expression. Closes #4048
* Higan: Updating builder.sh scriptAndersonTorres2014-08-31
| | | | | | | | | | Now builder.sh will install a higan-config.sh script to write auxiliary stuff on $HOME/.config/higan directory. That way, higan searches locally and runs cleanly. Obviously it's a hack, but the only other way is to do a huge patch on upstream sources; personally I think it is better to work that type of thing directly on higan sources.
* Higan - a quick&dirty workaroundAndersonTorres2014-08-30
| | | | | | | Higan uses a lot of hardcoded paths when it looks for runtime files as shaders, icons and mainly BIOS files. So, we made a q&d wrapper script: it copies all these files to $HOME/.config/higan in the 1st invocation.
* Higan - new package (alpha stage!)AndersonTorres2014-08-29
Higan is a cycle-accurate Nintendo multi-system emulator It is a preliminary release for Nix - I need to investigate some issues about install process and hardcoded paths...