about summary refs log tree commit diff
path: root/pkgs/games/zandronum
AgeCommit message (Collapse)AuthorFilesLines
2022-06-09zandronum/sqlite.nix: use SRI hash formatAndersonTorres1-2/+5
2021-07-17zandronum-sqlite: remove phasesFelix Buehler1-2/+0
2021-06-25games: /s/name/pname&version/Felix Buehler1-1/+2
2021-06-10Change all alsaLib references to alsa-libAndersonTorres1-2/+2
2021-01-16pkgs/games: pkg-config -> pkgconfig (2)Ben Siraphob1-2/+2
2021-01-15pkgs/games: stdenv.lib -> libBen Siraphob2-2/+2
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch2-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-09-08zandronum: use new hg urllassulus1-1/+1
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly3-3/+3
2020-01-22treewide: fix redirected urlsPatrick Hilhorst1-1/+1
According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
2019-11-30zandronum: 3.0 -> 3.0.1lassulus1-4/+5
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-1/+1
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-08-30reewide: Purge all uses `stdenv.system` and top-level `system`John Ericson1-1/+1
It is deprecated and will be removed after 18.09.
2018-07-21pkgs/*: remove unreferenced function argumentsvolth1-1/+1
2018-05-10fmod: supports darwinMatthew Bauer1-6/+16
2018-03-11zandronum: sound improvementsNikolay Amiantov2-44/+31
* Update fmod version to one with PulseAudio support; * Dynamically link FluidSynth instead of using LD_LIBRARY_PATH; * Use system libgme. Fixes sound on some machines.
2018-02-24treewide: transition mesa to libGLU_combinedAlexander V. Nikolaev1-2/+2
2017-09-15zandronum: fix soundfont support, minor cleanupCray Elliott1-7/+6
also add myself to maintainers
2017-09-15zandronum: 2.1.2 -> 3.0Cray Elliott6-92/+143
remove sqlite-amalgamation and put it internal to the zandronum folder, as it is only used by zandronum. Patches needed to avoid build impurities and to get the correct protocol version to connect to public servers. remove zandronum_bin as it is no longer needed
2016-12-17zandronum: bundle fmod, fix librariesNikolay Amiantov2-12/+70
2016-09-12treewide: explicitly specify gtk and related package versionsKirill Boltaev1-2/+2
2016-07-15Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster2-2/+4
2016-07-11zdoom: Mark it and its forks as nonfree.Jookia1-1/+1
See http://zdoom.org/wiki/License and the source code of each package.
2016-07-05zandronum: fix buildRahul Gopinath1-0/+2
Fixes #15994
2016-06-20Captialize meta.description of all packagesBjørn Forsman1-1/+1
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
2016-03-05Use general hardening flag toggle listsFranz Pletz1-1/+1
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
2016-02-28Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster2-2/+2
2016-02-27Remove all dots at end of descriptionszimbatm2-2/+2
Specially crafted for @JagaJaga find pkgs -name "*.nix" -exec \ sed -e 's|\(description.*\)\.";|\1";|g' -i {} \;
2016-02-24zandronum-server: disable format hardeningRobin Gloster1-0/+2
2016-02-10Fix misspelled meta.maintainers attributesEelco Dolstra2-2/+2
2016-02-10Fix misspelled meta.maintainers attributesEelco Dolstra2-2/+2
2016-02-04zandronum-bin: fix argv0, add licenseNikolay Amiantov1-2/+8
2015-12-13zandronum: unify packages, fix building, cleanupNikolay Amiantov3-89/+54
2015-08-17zandronum 2.1 -> 2.1.2Cray Elliott3-9/+9
2015-07-03zandronum: 2.0 -> 2.1lassulus3-11/+13
2015-06-22zandronum-bin: fix evaluation/tarball by assertionVladimír Čunát1-0/+2
The expression seems usable only on x86_64-linux anyway. /cc maintainer @lassulus.
2015-06-18add pkgs: zandronum, zandronum-{server,bin}, closes #8338lassulus3-0/+169