about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/crossfire/crossfire-server.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/games/crossfire/crossfire-server.nix')
-rw-r--r--nixpkgs/pkgs/games/crossfire/crossfire-server.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/games/crossfire/crossfire-server.nix b/nixpkgs/pkgs/games/crossfire/crossfire-server.nix
new file mode 100644
index 000000000000..9827aa76c526
--- /dev/null
+++ b/nixpkgs/pkgs/games/crossfire/crossfire-server.nix
@@ -0,0 +1,52 @@
+{ stdenv
+, lib
+, fetchsvn
+, autoreconfHook
+, autoconf
+, automake
+, libtool
+, flex
+, perl
+, check
+, pkg-config
+, python39 # crossfire-server relies on a parser wich was removed in python >3.9
+, version
+, rev
+, sha256
+, maps
+, arch
+}:
+
+stdenv.mkDerivation rec {
+  pname = "crossfire-server";
+  version = rev;
+
+  src = fetchsvn {
+    url = "http://svn.code.sf.net/p/crossfire/code/server/trunk/";
+    inherit sha256;
+    rev = "r${rev}";
+  };
+
+  nativeBuildInputs = [ autoconf automake libtool flex perl check pkg-config python39 ];
+  hardeningDisable = [ "format" ];
+
+  preConfigure = ''
+    ln -s ${arch} lib/arch
+    ln -s ${maps} lib/maps
+    sh autogen.sh
+  '';
+
+  configureFlags = [ "--with-python=${python39}" ];
+
+  postInstall = ''
+    ln -s ${maps} "$out/share/crossfire/maps"
+  '';
+
+  meta = with lib; {
+    description = "Server for the Crossfire free MMORPG";
+    homepage = "http://crossfire.real-time.com/";
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ ToxicFrog ];
+  };
+}