4a7f99d55d
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
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, boost, SDL2, SDL2_image, SDL2_ttf, libpng
|
|
, glew, gettext, libsndfile, libvorbis, libogg, physfs, openal
|
|
, xmlstarlet, doxygen, python3, callPackage }:
|
|
|
|
let
|
|
colobot-data = callPackage ./data.nix {};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "colobot";
|
|
# Maybe require an update to package colobot-data as well
|
|
# in file data.nix next to this one
|
|
version = "0.1.12-alpha";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "colobot";
|
|
repo = "colobot";
|
|
rev = "colobot-gold-${version}";
|
|
sha256 = "0viq5s4zqs33an7rdmc3anf74ml7mwwcwf60alhvp9hj5jr547s2";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake xmlstarlet doxygen python3 ];
|
|
buildInputs = [ boost SDL2 SDL2_image SDL2_ttf libpng glew gettext libsndfile libvorbis libogg physfs openal ];
|
|
|
|
enableParallelBuilding = false;
|
|
|
|
# The binary ends in games directoy
|
|
postInstall = ''
|
|
mv $out/games $out/bin
|
|
for contents in ${colobot-data}/share/games/colobot/*; do
|
|
ln -s $contents $out/share/games/colobot
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://colobot.info/";
|
|
description = "Colobot: Gold Edition is a real-time strategy game, where you can program your bots";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|