nixpkgs/pkgs/games/openclonk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
2.1 KiB
Nix
Raw Normal View History

2023-12-11 14:35:38 +01:00
{ lib, stdenv, fetchurl, fetchDebianPatch, fetchpatch, cmake, pkg-config
2018-04-10 09:47:09 +02:00
, SDL2, libvorbis, libogg, libjpeg, libpng, freetype, glew, tinyxml, openal
2023-12-11 14:35:38 +01:00
, freealut, readline, libb2, gcc-unwrapped
2018-04-10 09:47:09 +02:00
, enableSoundtrack ? false # Enable the "Open Clonk Soundtrack - Explorers Journey" by David Oerther
2016-08-23 04:49:15 +02:00
}:
let
soundtrack_src = fetchurl {
url = "http://www.openclonk.org/download/Music.ocg";
sha256 = "1ckj0dlpp5zsnkbb5qxxfxpkiq76jj2fgj91fyf3ll7n0gbwcgw5";
};
in stdenv.mkDerivation rec {
2018-04-10 09:47:09 +02:00
version = "8.1";
pname = "openclonk";
2016-08-23 04:49:15 +02:00
src = fetchurl {
url = "https://www.openclonk.org/builds/release/8.1/openclonk-${version}-src.tar.bz2";
2018-04-10 09:47:09 +02:00
sha256 = "0imkqjp8lww5p0cnqf4k4mb2v682mnsas63qmiz17rspakr7fxik";
2016-08-23 04:49:15 +02:00
};
2023-12-11 14:35:38 +01:00
patches = [
(fetchDebianPatch {
pname = "openclonk";
version = "8.1";
debianRevision = "3";
patch = "system-libb2.patch";
hash = "sha256-zuH6zxSQXRhnt75092Xwb6XYv8UG391E5Arbnr7ApiI=";
})
(fetchpatch {
name = "fix-gcc-11-build.patch";
url = "https://github.com/openclonk/openclonk/commit/e304efde2c8643bbc0fc1ad5e85024982744b233.patch";
hash = "sha256-jfVCgeZuYo4x53zhljKcnMDMIBECTRsUSxkl6JaL6HA=";
})
];
2016-08-23 04:49:15 +02:00
postInstall = ''
mv -v $out/games/openclonk $out/bin/
2021-01-15 05:31:39 +01:00
'' + lib.optionalString enableSoundtrack ''
2018-04-10 09:47:09 +02:00
ln -sv ${soundtrack_src} $out/share/games/openclonk/Music.ocg
2016-08-23 04:49:15 +02:00
'';
nativeBuildInputs = [ cmake pkg-config ];
2018-04-10 09:47:09 +02:00
2016-08-23 04:49:15 +02:00
buildInputs = [
2018-04-10 09:47:09 +02:00
SDL2 libvorbis libogg libjpeg libpng freetype glew tinyxml openal freealut
2023-12-11 14:35:38 +01:00
readline libb2
2016-08-23 04:49:15 +02:00
];
2018-04-10 09:47:09 +02:00
cmakeFlags = [ "-DCMAKE_AR=${gcc-unwrapped}/bin/gcc-ar" "-DCMAKE_RANLIB=${gcc-unwrapped}/bin/gcc-ranlib" ];
cmakeBuildType = "RelWithDebInfo";
meta = with lib; {
2016-08-23 04:49:15 +02:00
description = "Free multiplayer action game in which you control clonks, small but witty and nimble humanoid beings";
homepage = "https://www.openclonk.org";
2016-08-23 04:49:15 +02:00
license = if enableSoundtrack then licenses.unfreeRedistributable else licenses.isc;
2023-12-11 14:35:38 +01:00
mainProgram = "openclonk";
2018-04-10 09:47:09 +02:00
maintainers = with maintainers; [ lheckemann ];
platforms = [ "x86_64-linux" "i686-linux" ];
2016-08-23 04:49:15 +02:00
};
}