pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / games / liberal-crime-squad / default.nix
blob47968c8c2ba47d05f1fce7cdcf67fbe0d28d4043
1 { fetchFromGitHub, lib, stdenv, autoreconfHook, libiconv, ncurses, SDL2, SDL2_mixer }:
3 stdenv.mkDerivation {
4   version = "2016-07-06";
5   pname = "liberal-crime-squad";
7   src = fetchFromGitHub {
8     owner = "Kamal-Sadek";
9     repo = "Liberal-Crime-Squad";
10     rev = "2ace84e";
11     sha256 = "0mcldn8ivlfyjfx22ygzcbbw3bzl0j6vi3g6jyj8jmcrni61mgmb";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ libiconv ncurses SDL2 SDL2_mixer ];
17   enableParallelBuilding = true;
19   meta = with lib; {
20     description = "Humorous politically themed ncurses game";
21     longDescription = ''
22       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.
23     '';
24     homepage = "https://github.com/Kamal-Sadek/Liberal-Crime-Squad";
25     maintainers = [ maintainers.rardiol ];
26     mainProgram = "crimesquad";
27     license = licenses.gpl2Plus;
28     platforms = platforms.all;
29   };