mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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.2.0-alpha";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "colobot";
|
|
repo = "colobot-data";
|
|
rev = "colobot-gold-${version}";
|
|
sha256 = "sha256-yzIbAzrGsDe6hO0GHF9gjnj7IE8B7+5LDbvjZi4Wtms=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|