blob: 87e089eb9571d03df786e208ccce4dc4c246640c (
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
25
26
|
{ lib
, stdenv
, fetchurl
, ncurses
}:
stdenv.mkDerivation rec {
pname = "moon-buggy";
version = "1.0.51";
buildInputs = [
ncurses
];
src = fetchurl {
url = "http://m.seehuhn.de/programs/moon-buggy-${version}.tar.gz";
sha256 = "0gyjwlpx0sd728dwwi7pwks4zfdy9rm1w1xbhwg6zip4r9nc2b9m";
};
meta = {
description = "A simple character graphics game where you drive some kind of car across the moon's surface";
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.rybern ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
homepage = "https://www.seehuhn.de/pages/moon-buggy";
};
}
|