braincurses: init at 1.1.0

+30
+28
pkgs/games/braincurses/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, ncurses }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "braincurses-${version}"; 5 + version = "1.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "bderrly"; 9 + repo = "braincurses"; 10 + rev = version; 11 + sha256 = "0gpny9wrb0zj3lr7iarlgn9j4367awj09v3hhxz9r9a6yhk4anf5"; 12 + }; 13 + 14 + buildInputs = [ ncurses ]; 15 + 16 + # There is no install target in the Makefile 17 + installPhase = '' 18 + install -Dt $out/bin braincurses 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = https://github.com/bderrly/braincurses; 23 + description = "A version of the classic game Mastermind"; 24 + license = licenses.gpl2; 25 + maintainers = with maintainers; [ dotlambda ]; 26 + platforms = platforms.linux; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 17678 17679 blobby = callPackage ../games/blobby { }; 17680 17681 brogue = callPackage ../games/brogue { }; 17682 17683 bsdgames = callPackage ../games/bsdgames { };
··· 17678 17679 blobby = callPackage ../games/blobby { }; 17680 17681 + braincurses = callPackage ../games/braincurses { }; 17682 + 17683 brogue = callPackage ../games/brogue { }; 17684 17685 bsdgames = callPackage ../games/bsdgames { };