Merge pull request #307746 from r-ryantm/auto-update/mame
[NixPkgs.git] / pkgs / games / braincurses / default.nix
blobbbbc35b412a257a3557f6ed248d5efce7217332c
1 { lib, stdenv, fetchFromGitHub, ncurses }:
3 stdenv.mkDerivation rec {
4   pname = "braincurses";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "bderrly";
9     repo = "braincurses";
10     rev = version;
11     sha256 = "0gpny9wrb0zj3lr7iarlgn9j4367awj09v3hhxz9r9a6yhk4anf5";
12   };
14   buildInputs = [ ncurses ];
16   # There is no install target in the Makefile
17   installPhase = ''
18     install -Dt $out/bin braincurses
19   '';
21   meta = with lib; {
22     homepage = "https://github.com/bderrly/braincurses";
23     description = "A version of the classic game Mastermind";
24     mainProgram = "braincurses";
25     license = licenses.gpl2;
26     maintainers = with maintainers; [ dotlambda ];
27     platforms = platforms.linux;
28   };