Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pkgs/games/liberal-crime-squad/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ fetchFromGitHub, stdenv, ncurses, autoconf, automake , SDL2, SDL2_mixer }:

stdenv.mkDerivation rec {
version = "2016-03-03";
name = "liberal-crime-squad-${version}";
src = fetchFromGitHub {
owner = "Kamal-Sadek";
repo = "Liberal-Crime-Squad";
rev = "39c5f167e902e33cb37b152215d67f71b9ae8269";
sha256 = "18s2w2570fd79y9rb7ikxls1qw29l1lbwk9n2dxxqjslbzrbvv31";
};

preConfigure = ''
./bootstrap
'';

buildInputs = [ ncurses autoconf automake SDL2 SDL2_mixer ];

meta = with stdenv.lib; {
description = "A humorous politically themed ncurses game";
longDescription = ''
Welcome to Liberal Crime Squad! The Conservatives have taken the Executive, Legislative, and Judicial branches of government. Over time, the Liberal laws of this nation will erode and turn the country into a BACKWOODS YET CORPORATE NIGHTMARE. To prevent this from happening, the Liberal Crime Squad was established. The mood of the country is shifting, and we need to turn things around. Go out on the streets and indoctrinate Conservative automatons. That is, let them see their True Liberal Nature. Then arm them and send them forth to Stop Evil.
'';
homepage = https://github.com/Kamal-Sadek/Liberal-Crime-Squad;
license = licenses.gpl2;
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14758,6 +14758,8 @@ in

lgogdownloader = callPackage ../games/lgogdownloader { };

liberal-crime-squad = callPackage ../games/liberal-crime-squad { };

lincity = callPackage ../games/lincity {};

lincity_ng = callPackage ../games/lincity/ng.nix {};
Expand Down