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.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, lib, fetchFromGitHub, cmake
|
|
, gettext, vorbis-tools
|
|
, xmlstarlet, doxygen, python3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "colobot-data";
|
|
version = "0.1.12-alpha";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "colobot";
|
|
repo = "colobot-data";
|
|
rev = "colobot-gold-${version}";
|
|
sha256 = "1vm33s52ymwd03x24i9bqiglw5v3wgd7rlzyx9r5ww0nnqzwbwi6";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake vorbis-tools xmlstarlet doxygen python3 ];
|
|
buildInputs = [ gettext ];
|
|
|
|
enableParallelBuilding = false;
|
|
# Build procedure requires the data folder
|
|
patchPhase = ''
|
|
cp -r $src localSrc
|
|
chmod +w localSrc/help/bots/po
|
|
find -type d -exec chmod +w {} \;
|
|
for po in localSrc/help/{bots,cbot,object,generic,programs}/po/* localSrc/levels/*{/*/*,}/po/*; do
|
|
rm $po
|
|
touch $po
|
|
done
|
|
# skip music
|
|
rm localSrc/music/CMakeLists.txt
|
|
cd localSrc
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://colobot.info/";
|
|
description = "Game data for colobot";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|