nixpkgs/pkgs/games/liberation-circuit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, pkg-config, allegro5, libGL, wrapGAppsHook3 }:
2021-08-12 12:15:20 +00:00
stdenv.mkDerivation rec {
pname = "liberation-circuit";
2024-04-07 22:55:21 +00:00
version = "1.3-unstable-2022-01-02";
2021-08-12 12:15:20 +00:00
src = fetchFromGitHub {
owner = "linleyh";
2024-04-07 22:55:21 +00:00
repo = "liberation-circuit";
rev = "19e3363547793e931fd9419b61ebc2cd8e257714";
2024-04-07 22:55:21 +00:00
hash = "sha256-zIwjh4CBSmKz7pF7GM5af+VslWho5jHOLsulbW4C8TY=";
2021-08-12 12:15:20 +00:00
};
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
2021-08-12 12:15:20 +00:00
buildInputs = [ allegro5 libGL ];
dontWrapGApps = true;
2021-08-12 12:15:20 +00:00
installPhase = ''
runHook preInstall
mkdir -p $out/opt
cp -r bin $out/opt/liberation-circuit
chmod +x $out/opt/liberation-circuit/launcher.sh
install -D linux-packaging/liberation-circuit.desktop $out/share/applications/liberation-circuit.desktop
install -D linux-packaging/liberation-circuit.appdata.xml $out/share/metainfo/liberation-circuit.appdata.xml
install -D linux-packaging/icon-256px.png $out/share/pixmaps/liberation-circuit.png
runHook postInstall
'';
postFixup = ''
makeWrapper $out/opt/liberation-circuit/launcher.sh $out/bin/liberation-circuit \
"''${gappsWrapperArgs[@]}"
'';
2024-04-07 22:55:21 +00:00
meta = {
2021-08-12 12:15:20 +00:00
description = "Real-time strategy game with programmable units";
mainProgram = "liberation-circuit";
2021-08-12 12:15:20 +00:00
longDescription = ''
2024-04-07 22:55:21 +00:00
Escape from a hostile computer system!
Harvest data to create an armada of battle-processes to aid your escape!
Take command directly and play the game as an RTS, or use the game's built-in
editor and compiler to write your own unit AI in a simplified version of C.
2021-08-12 12:15:20 +00:00
'';
homepage = "https://linleyh.itch.io/liberation-circuit";
2024-04-07 22:55:21 +00:00
maintainers = with lib.maintainers; [ emilytrau ];
license = lib.licenses.gpl3Only;
platforms = lib.platforms.linux;
2021-08-12 12:15:20 +00:00
};
}