depot/third_party/nixpkgs/pkgs/games/moon-buggy/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

26 lines
642 B
Nix

{ 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";
};
}