writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / by-name / ro / robotfindskitten / package.nix
blob327b0aca626b3e4b012f6ea3c89b5a5b276449aa
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoreconfHook,
6   ncurses,
7   pkg-config,
8   texinfo,
9 }:
11 stdenv.mkDerivation (finalAttrs: {
12   pname = "robotfindskitten";
13   version = "2.8284271.702";
15   src = fetchFromGitHub {
16     owner = "robotfindskitten";
17     repo = "robotfindskitten";
18     rev = finalAttrs.version;
19     hash = "sha256-z6//Yfp3BtJAtUdY05m1eKVrTdH19MvK7LZOwX5S1CM=";
20   };
22   outputs = [
23     "out"
24     "man"
25     "info"
26   ];
28   nativeBuildInputs = [
29     autoreconfHook
30     pkg-config
31     texinfo
32   ];
34   buildInputs = [
35     ncurses
36   ];
38   makeFlags = [
39     "execgamesdir=$(out)/bin"
40   ];
42   postInstall = ''
43     install -Dm644 nki/vanilla.nki -t $out/share/games/robotfindskitten/
44   '';
46   meta = {
47     description = "Yet another zen simulation; A simple find-the-kitten game";
48     homepage = "http://robotfindskitten.org/";
49     license = lib.licenses.gpl2Plus;
50     mainProgram = "robotfindskitten";
51     maintainers = [ lib.maintainers.AndersonTorres ];
52     platforms = lib.platforms.unix;
53   };