pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / stone-kingdoms / default.nix
bloba8b84c60b1e89380f920b2a36653af36b83f26da
1 { lib
2 , stdenvNoCC
3 , fetchFromGitLab
4 , copyDesktopItems
5 , love
6 , makeDesktopItem
7 , makeWrapper
8 , strip-nondeterminism
9 , zip
12 stdenvNoCC.mkDerivation rec {
13   pname = "stone-kingdoms";
14   version = "0.6.1";
16   src = fetchFromGitLab {
17     owner = "stone-kingdoms";
18     repo = pname;
19     rev = version;
20     hash = "sha256-W2hzJg22O857Kh7CJVVHV5qu8QKjXCwW3hmgKBc0n2g=";
21   };
23   nativeBuildInputs = [
24     copyDesktopItems
25     makeWrapper
26     strip-nondeterminism
27     zip
28   ];
30   desktopItems = [
31     (makeDesktopItem {
32       name = pname;
33       exec = pname;
34       icon = pname;
35       comment = "A real-time strategy game made with LÖVE based on the original Stronghold by Firefly studios";
36       desktopName = "Stone Kingdoms";
37       genericName = pname;
38       categories = [ "Game" ];
39     })
40   ];
42   installPhase = ''
43     runHook preInstall
44     zip -9 -r stone-kingdoms.love ./*
45     strip-nondeterminism --type zip stone-kingdoms.love
46     install -Dm755 -t $out/share/games/lovegames/ stone-kingdoms.love
47     install -Dm644 assets/other/icon.png $out/share/icons/hicolor/256x256/apps/stone-kingdoms.png
48     makeWrapper ${love}/bin/love $out/bin/stone-kingdoms \
49       --add-flags $out/share/games/lovegames/stone-kingdoms.love
50     runHook postInstall
51   '';
53   meta = with lib; {
54     description = "Real-time strategy game made with LÖVE based on the original Stronghold by Firefly studios";
55     homepage = "https://gitlab.com/stone-kingdoms/stone-kingdoms";
56     platforms = platforms.linux;
57     license = with licenses; [
58       asl20 # engine
59       unfree # game assets
60     ];
61     maintainers = with maintainers; [ hulr ];
62   };