summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoréclairevoyant <848000+eclairevoyant@users.noreply.github.com>2024-04-07 18:55:21 -0400
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-04-17 14:01:46 +0000
commitdf87cddc840b161a6cb67660a0198489e0744a22 (patch)
treea1689311a4c9705f954d78f3fd5d85b738868e9d
parentMerge pull request #304740 from vcunat/p/firefox-23.11 (diff)
downloadnixpkgs-df87cddc840b161a6cb67660a0198489e0744a22.tar.gz
liberation-circuit: general cleanup
(cherry picked from commit 0ca89abf6a8addee13c943791e8db3e083d055c8)
-rw-r--r--pkgs/games/liberation-circuit/default.nix19
1 files changed, 11 insertions, 8 deletions
diff --git a/pkgs/games/liberation-circuit/default.nix b/pkgs/games/liberation-circuit/default.nix
index 365fbb2983eb..e43546c3ca9e 100644
--- a/pkgs/games/liberation-circuit/default.nix
+++ b/pkgs/games/liberation-circuit/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "liberation-circuit";
- version = "unstable-2022-01-02";
+ version = "1.3-unstable-2022-01-02";
src = fetchFromGitHub {
owner = "linleyh";
- repo = pname;
+ repo = "liberation-circuit";
rev = "19e3363547793e931fd9419b61ebc2cd8e257714";
- sha256 = "zIwjh4CBSmKz7pF7GM5af+VslWho5jHOLsulbW4C8TY=";
+ hash = "sha256-zIwjh4CBSmKz7pF7GM5af+VslWho5jHOLsulbW4C8TY=";
};
nativeBuildInputs = [ pkg-config makeWrapper ];
@@ -29,14 +29,17 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
- meta = with lib; {
+ meta = {
description = "Real-time strategy game with programmable units";
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.
+ 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 maintainers; [ emilytrau ];
- license = licenses.gpl3Only;
- platforms = platforms.linux;
+ maintainers = with lib.maintainers; [ emilytrau ];
+ license = lib.licenses.gpl3Only;
+ platforms = lib.platforms.linux;
};
}