about summary refs log tree commit diff
path: root/pkgs/games/brogue
AgeCommit message (Collapse)AuthorFilesLines
2023-11-12brogue: adopted by AndersonTorres and fgazAnderson Torres1-1/+1
2023-11-11maintainers: remove skeidelFrancesco Gazzetta1-1/+1
* Has been inactive for over 3 years https://github.com/svenkeidel?tab=overview&from=2020-12-01&to=2020-12-31&org=NixOS * Is not responsive https://github.com/NixOS/nixpkgs/pull/249917
2022-05-27tree-wide: SDL may not have a .devPeter Hoeg1-1/+1
2022-05-19brogue: pull upstream fix for -fno-common toolchainsSergei Trofimovich1-1/+10
Without the change build fails on upstream gcc-10 as: ld: src/brogue/Time.o:/build/brogue-1.7.5/src/brogue/IncludeGlobals.h:51: multiple definition of `messageArchive'; src/brogue/Architect.o:/build/brogue-1.7.5/src/brogue/IncludeGlobals.h:51: first defined here
2022-02-25treewide: switch all desktop file generators to new APIK9001-2/+1
Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
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-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-04-22brogue: add .desktop file and iconChris Rendle-Short1-1/+14
Add XDG .desktop file and icon. Note that the .desktop file included in the source archive is not used because it uses unsuitable paths and refers to an old version of the game.
2018-10-05brogue: 1.7.4 -> 1.7.5 (#47830)R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/brogue/versions
2017-11-05treewide: Depend on stdenv.cc.bintools instead of binutils directlyJohn Ericson1-1/+1
One should do this when needed executables at build time. It is more honest and cross-friendly than refering to binutils directly.
2016-09-24brogue: disable fortify hardening to fix runtime errorFranz Pletz1-1/+1
See #18888.
2016-09-24brogue: fix crash by stackprotector hardening (#18888)Profpatsch1-0/+3
2016-08-23treewide: Make explicit that 'dev' output of SDL is usedTuomas Tynkkynen1-1/+1
2016-05-07brogue: init at 1.7.4Sven Keidel1-0/+35
with fixups by joachifm: - Correct license (AGPL-3) - Removed redundant build input - Cleanup description Closes #15244