tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
robotfindskitten: init at 2.7182818.701
AndersonTorres
8 years ago
0808896e
daa65527
+26
2 changed files
expand all
collapse all
unified
split
pkgs
games
robotfindskitten
default.nix
top-level
all-packages.nix
+24
pkgs/games/robotfindskitten/default.nix
···
1
1
+
{ stdenv, fetchurl, pkgconfig, ncurses }:
2
2
+
3
3
+
with stdenv.lib;
4
4
+
stdenv.mkDerivation rec {
5
5
+
6
6
+
name = "robotfindskitten-${version}";
7
7
+
version = "2.7182818.701";
8
8
+
9
9
+
src = fetchurl {
10
10
+
url = "mirror://sourceforge/project/rfk/robotfindskitten-POSIX/mayan_apocalypse_edition/${name}.tar.gz";
11
11
+
sha256 = "06fp6b4li50mzw83j3pkzqspm6dpgxgxw03b60xkxlkgg5qa6jbp";
12
12
+
};
13
13
+
14
14
+
buildInputs =
15
15
+
[ pkgconfig ncurses ];
16
16
+
17
17
+
meta = {
18
18
+
description = "Yet another zen simulation; A simple find-the-kitten game";
19
19
+
homepage = http://robotfindskitten.org/;
20
20
+
license = licenses.gpl2;
21
21
+
maintainers = [ maintainers.AndersonTorres ];
22
22
+
platforms = platforms.unix;
23
23
+
};
24
24
+
}
+2
pkgs/top-level/all-packages.nix
···
17116
17116
17117
17117
rogue = callPackage ../games/rogue { };
17118
17118
17119
17119
+
robotfindskitten = callPackage ../games/robotfindskitten { };
17120
17120
+
17119
17121
saga = callPackage ../applications/gis/saga { };
17120
17122
17121
17123
samplv1 = callPackage ../applications/audio/samplv1 { };