nixpkgs/pkgs/games/moon-buggy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
674 B
Nix
Raw Normal View History

2023-11-18 16:18:54 +00:00
{ lib
, stdenv
, fetchurl
, ncurses
}:
2017-08-11 20:32:59 +00:00
stdenv.mkDerivation rec {
2022-01-11 12:50:16 +00:00
pname = "moon-buggy";
2017-08-11 20:32:59 +00:00
version = "1.0.51";
buildInputs = [
ncurses
];
src = fetchurl {
2022-01-11 12:50:16 +00:00
url = "http://m.seehuhn.de/programs/moon-buggy-${version}.tar.gz";
2017-08-11 20:32:59 +00:00
sha256 = "0gyjwlpx0sd728dwwi7pwks4zfdy9rm1w1xbhwg6zip4r9nc2b9m";
};
meta = {
description = "A simple character graphics game where you drive some kind of car across the moon's surface";
mainProgram = "moon-buggy";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl2;
2023-11-18 16:18:54 +00:00
maintainers = [ lib.maintainers.rybern ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
homepage = "https://www.seehuhn.de/pages/moon-buggy";
2017-08-11 20:32:59 +00:00
};
}