Raphael Robatsch
69c8907545
cataclysm-dda: fix build
2022-09-13 19:55:22 +02:00
Sally Gordon
ad8041c08c
cataclysm-dda-git: 2021-07-03 -> 2022-08-20 ( #187209 )
...
Co-authored-by: Have a good time <i@niconiconi.xyz>
2022-08-21 02:31:45 +02:00
D Anzorge
b9b7c80f7a
cataclysm-dda: update locale path patch
2022-08-17 01:10:37 +02:00
Rick van Schijndel
941458e0b9
cataclysm-dda-git: mark broken on x86_64-darwin
2022-05-29 10:56:04 +02:00
Jonathan Ringer
3af9faf36d
Merge pull request #133431 from Ma27/glibc-2.34
...
glibc: 2.33-108 -> 2.34-115
2022-02-27 18:07:11 -08:00
Maximilian Bosch
82580b1518
cataclysm-dda: fix eval
...
No idea why this breaks now, but let's see if that's sufficient to make
ofborg happy.
2022-02-27 20:02:04 +01:00
Maximilian Bosch
6320b7240f
cataclysm-dda: fix build w/glibc-2.34
...
* Enable parallel building to speed up the build-time.
* Disable tests as vendored catch2 doesn't compile against glibc 2.34
and I couldn't get the tests to run in the sandbox.
Failing Hydra build: https://hydra.nixos.org/build/163952121
2022-02-27 10:27:01 +01:00
André-Patrick Bubel
eec72b56d7
cataclysm-dda: enable parallel building ( #161957 )
2022-02-27 08:43:56 +02:00
D Anzorge
973c3e8411
cataclysm-dda: 0.F-2 -> 0.F-3
2021-11-29 22:04:42 +01:00
D Anzorge
7d8d6e8e40
cataclysm-dda: 0.F-1 -> 0.F-2
2021-08-31 18:41:34 +02:00
D Anzorge
98af443596
cataclysm-dda: 0.F -> 0.F-1
2021-08-19 01:06:38 +02:00
D Anzorge
27b3e0ab56
cataclysm-dda-git: 2020-12-09 -> 2021-07-03
2021-07-04 18:50:58 +02:00
D Anzorge
5f298b119a
cataclysm-dda: 0.E-3 -> 0.F
2021-07-04 18:50:58 +02:00
sophrosyne97
1372b429cc
cataclysm-dda-git: 2019-11-22 -> 2020-12-09
2021-05-16 15:44:54 -07:00
Sandro
e355946df1
Merge pull request #103546 from mnacamura/cdda-small-fix
2021-04-12 16:31:01 +02:00
Ben Siraphob
bd42003f87
pkgs/games: pkg-config -> pkgconfig (2)
2021-01-16 23:49:59 -08:00
Ben Siraphob
2e34288f0d
pkgs/games: stdenv.lib -> lib
2021-01-15 13:36:04 +07:00
Profpatsch
4a7f99d55d
treewide: with stdenv.lib; in meta -> with lib;
...
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-11 10:38:22 +01:00
freezeboy
e8cc6535cc
cataclysm-dda: 0.E-2 -> 0.E-3
2020-12-27 21:41:39 +01:00
Mitsuhiro Nakamura
0c02a5599c
cataclysmDDA: add utility function attachPkgs
2020-11-12 11:54:42 +09:00
Mitsuhiro Nakamura
19deef39c7
cataclysmDDA: refactoring
2020-11-12 10:13:19 +09:00
Mitsuhiro Nakamura
109adedd62
cataclysmDDA: filter out things that do not have for{Tiles,Curses} attrs
2020-11-12 10:12:30 +09:00
Mitsuhiro Nakamura
f2b2347b29
doc: add section for cataclysm-dda
2020-07-18 14:23:25 +09:00
Mitsuhiro Nakamura
cf0e2d51ac
cataclysmDDA: update mods
2020-07-18 14:23:25 +09:00
Mitsuhiro Nakamura
fbf4b4f5ed
cataclysmDDA: update README
...
Add description about `useXdgDir` flag
2020-07-18 14:23:24 +09:00
Mitsuhiro Nakamura
bbe7b86eea
cataclysmDDA: launch the wrapped program
2020-07-18 14:23:24 +09:00
Mitsuhiro Nakamura
d472eed4b5
cataclysmDDA: add README
2020-07-18 14:23:23 +09:00
Mitsuhiro Nakamura
633f211113
cataclysm-dda-git: make it overridable with git revision
...
'cataclysm-dda-git.overrideAttrs (_: { version = ...; src = fetchFromGitHub { ... }; })'
did not update VERSION make flag correctly.
With this change, one can override 'cataclysm-dda-git' correctly and
more easily:
cataclysm-dda-git.override { version = ...; rev = ...; sha256 = ...; }
2020-07-18 14:23:23 +09:00
Mitsuhiro Nakamura
ecf7b57e12
cataclysm-dda{,-git}: support build with USE_XDG_DIR flag
2020-07-18 14:23:23 +09:00
Mitsuhiro Nakamura
de56294e57
cataclysm-dda{,-git}: clean up
2020-07-18 14:23:22 +09:00
Mitsuhiro Nakamura
90c265275f
cataclysmDDA: make pkgs extensible
...
Example:
let
customMods = self: super: lib.recursiveUpdate super {
soundpack.AwesomeSounds = cataclysmDDA.buildSoundPack { ... };
};
in
cataclysm-dda.withMods (mods: with mods.extend customMods; [
tileset.UndeadPeople
soundpack.AwesomeSounds
])
2020-07-18 14:23:22 +09:00
Mitsuhiro Nakamura
bc88844e68
cataclysmDDA: add UndeadPeople tileset
2020-07-18 14:23:22 +09:00
Mitsuhiro Nakamura
ac8555486f
cataclysmDDA: add very basic framework for packaging mods
...
Add new namespace 'cataclysmDDA', in which package builders, games, and
mods are listed.
2020-07-18 14:23:19 +09:00
Mitsuhiro Nakamura
bf71f12cb5
cataclysm-dda{,-git}: apply locale patch dynamically
...
Each time src/translations.cpp is modified, we have to update the locale
patch. Using sed to patch dynamically should be handy.
2020-07-18 14:21:12 +09:00
Mitsuhiro Nakamura
d6863de058
cataclysm-dda{,-git}: name -> pname and version
2020-07-18 14:21:09 +09:00
Alyssa Ross
5da2d61bd4
cataclysm-dda: 0.E -> 0.E-2
2020-07-18 05:16:04 +00:00
worldofpeace
55dcf622ec
Merge pull request #84261 from catern/cdda
...
cataclysm-dda: 0.D -> 0.E
2020-04-20 08:05:48 -04:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
Spencer Baugh
4cfc499e1b
cataclysm-dda: 0.D -> 0.E
2020-04-04 13:46:26 -04:00
Franz Pletz
43442880cf
cataclysm-dda: fix build on darwin
2019-12-27 05:21:41 +01:00
Franz Pletz
77b6c3cd06
Merge remote-tracking branch 'origin/master' into gcc-9
2019-12-26 14:17:36 +01:00
Andrey Petrov
5e8770a8bb
cataclysm-dda-git: 2019-05-03 -> 2019-11-22
2019-12-01 08:46:52 -08:00
Franz Pletz
65eb7fe785
cataclysm-dda: fix build with gcc9
2019-11-03 14:43:34 +01:00
volth
7b8fb5c06c
treewide: remove redundant quotes
2019-09-08 23:38:31 +00:00
Mitsuhiro Nakamura
f7dacc3ae2
cataclysm-dda-git: remove obsolete lua dependency
2019-05-03 22:40:09 +09:00
Mitsuhiro Nakamura
c2987f1ba8
cataclysm-dda{,-git}: refactoring
2019-05-03 22:40:09 +09:00
Mitsuhiro Nakamura
520dd5d71e
cataclysm-dda-git: 2018-07-15 -> 2019-05-03
2019-05-03 22:40:09 +09:00
Mitsuhiro Nakamura
d8dec0a233
cataclysm-dda: 0.C -> 0.D
2019-05-03 22:40:04 +09:00
Jörg Thalheim
dadc7eb329
treewide: use runtimeShell instead of stdenv.shell whenever possible
...
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.
2019-02-26 14:10:49 +00:00
Mitsuhiro Nakamura
c77e4de58e
cataclysm-dda-git: fix desktop launcher installation ( #44364 )
2018-08-02 21:36:18 +02:00