mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
67 lines
1.8 KiB
Nix
67 lines
1.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
allegro5,
|
|
libGL,
|
|
wrapGAppsHook3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "liberation-circuit";
|
|
version = "1.3-unstable-2022-01-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linleyh";
|
|
repo = "liberation-circuit";
|
|
rev = "19e3363547793e931fd9419b61ebc2cd8e257714";
|
|
hash = "sha256-zIwjh4CBSmKz7pF7GM5af+VslWho5jHOLsulbW4C8TY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
buildInputs = [
|
|
allegro5
|
|
libGL
|
|
];
|
|
|
|
dontWrapGApps = true;
|
|
|
|
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[@]}"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Real-time strategy game with programmable units";
|
|
mainProgram = "liberation-circuit";
|
|
longDescription = ''
|
|
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.
|
|
'';
|
|
homepage = "https://linleyh.itch.io/liberation-circuit";
|
|
maintainers = with lib.maintainers; [ emilytrau ];
|
|
license = lib.licenses.gpl3Only;
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|