summaryrefslogtreecommitdiff
path: root/pkgs/games
diff options
context:
space:
mode:
authorquantenzitrone <general@dev.quantenzitrone.eu>2026-01-22 07:39:22 +0100
committerquantenzitrone <general@dev.quantenzitrone.eu>2026-01-22 09:50:06 +0100
commitae6b3ca429cb8e1fa8284ab84b10c4bfccedd019 (patch)
tree265a54fdc691d09b2d0cbfbfdbb0ed05edf9b510 /pkgs/games
parentconstruo: move to pkgs/by-name (diff)
downloadnixpkgs-ae6b3ca429cb8e1fa8284ab84b10c4bfccedd019.tar.gz
curseofwar: move to pkgs/by-name
this shouldn't create any rebuilds
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/curseofwar/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/games/curseofwar/default.nix b/pkgs/games/curseofwar/default.nix
deleted file mode 100644
index a6f411ca53ce..000000000000
--- a/pkgs/games/curseofwar/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- lib,
- stdenv,
- fetchFromGitHub,
- ncurses,
- SDL,
-}:
-
-stdenv.mkDerivation (finalAttrs: {
- pname = "curseofwar";
- version = "1.3.0";
-
- src = fetchFromGitHub {
- owner = "a-nikolaev";
- repo = "curseofwar";
- rev = "v${finalAttrs.version}";
- sha256 = "1wd71wdnj9izg5d95m81yx3684g4zdi7fsy0j5wwnbd9j34ilz1i";
- };
-
- buildInputs = [
- ncurses
- SDL
- ];
-
- makeFlags = (lib.optionals (SDL != null) [ "SDL=yes" ]) ++ [
- "PREFIX=$(out)"
- # force platform's cc on darwin, otherwise gcc is used
- "CC=${stdenv.cc.targetPrefix}cc"
- ];
-
- meta = {
- description = "Fast-paced action strategy game";
- homepage = "https://a-nikolaev.github.io/curseofwar/";
- license = lib.licenses.gpl3;
- mainProgram = if SDL != null then "curseofwar-sdl" else "curseofwar";
- maintainers = with lib.maintainers; [ fgaz ];
- platforms = lib.platforms.all;
- };
-})