summary refs log tree commit diff
path: root/pkgs/games/robotfindskitten/default.nix
blob: 16e36a03dce0915a7fc428ab3c605b6fef3fe4aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, ncurses }:

with stdenv.lib;
stdenv.mkDerivation rec {

  name = "robotfindskitten-${version}";
  version = "2.7182818.701";

  src = fetchurl {
    url = "mirror://sourceforge/project/rfk/robotfindskitten-POSIX/mayan_apocalypse_edition/${name}.tar.gz";
    sha256 = "06fp6b4li50mzw83j3pkzqspm6dpgxgxw03b60xkxlkgg5qa6jbp";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ ncurses ];

  meta = {
    description = "Yet another zen simulation; A simple find-the-kitten game";
    homepage = http://robotfindskitten.org/;
    license = licenses.gpl2;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.unix;
  };
}