lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 26 lines 642 B view raw
1{ lib 2, stdenv 3, fetchurl 4, ncurses 5}: 6stdenv.mkDerivation rec { 7 pname = "moon-buggy"; 8 version = "1.0.51"; 9 10 buildInputs = [ 11 ncurses 12 ]; 13 14 src = fetchurl { 15 url = "http://m.seehuhn.de/programs/moon-buggy-${version}.tar.gz"; 16 sha256 = "0gyjwlpx0sd728dwwi7pwks4zfdy9rm1w1xbhwg6zip4r9nc2b9m"; 17 }; 18 19 meta = { 20 description = "A simple character graphics game where you drive some kind of car across the moon's surface"; 21 license = lib.licenses.gpl2; 22 maintainers = [ lib.maintainers.rybern ]; 23 platforms = lib.platforms.linux ++ lib.platforms.darwin; 24 homepage = "https://www.seehuhn.de/pages/moon-buggy"; 25 }; 26}