mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
63 lines
1.6 KiB
Nix
63 lines
1.6 KiB
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchFromGitLab
|
|
, copyDesktopItems
|
|
, love
|
|
, makeDesktopItem
|
|
, makeWrapper
|
|
, strip-nondeterminism
|
|
, zip
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "stone-kingdoms";
|
|
version = "0.6.1";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "stone-kingdoms";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-W2hzJg22O857Kh7CJVVHV5qu8QKjXCwW3hmgKBc0n2g=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
makeWrapper
|
|
strip-nondeterminism
|
|
zip
|
|
];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = pname;
|
|
exec = pname;
|
|
icon = pname;
|
|
comment = "A real-time strategy game made with LÖVE based on the original Stronghold by Firefly studios";
|
|
desktopName = "Stone Kingdoms";
|
|
genericName = pname;
|
|
categories = [ "Game" ];
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
zip -9 -r stone-kingdoms.love ./*
|
|
strip-nondeterminism --type zip stone-kingdoms.love
|
|
install -Dm755 -t $out/share/games/lovegames/ stone-kingdoms.love
|
|
install -Dm644 assets/other/icon.png $out/share/icons/hicolor/256x256/apps/stone-kingdoms.png
|
|
makeWrapper ${love}/bin/love $out/bin/stone-kingdoms \
|
|
--add-flags $out/share/games/lovegames/stone-kingdoms.love
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Real-time strategy game made with LÖVE based on the original Stronghold by Firefly studios";
|
|
homepage = "https://gitlab.com/stone-kingdoms/stone-kingdoms";
|
|
platforms = platforms.linux;
|
|
license = with licenses; [
|
|
asl20 # engine
|
|
unfree # game assets
|
|
];
|
|
maintainers = with maintainers; [ hulr ];
|
|
};
|
|
}
|