opendune: init at 0.9 (#41415)

wip/yesman
Fernando José Pando 6 years ago committed by xeji
parent 999871400b
commit 3cc263ea13
  1. 32
      pkgs/games/opendune/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, SDL, SDL_image, SDL_mixer, binutils }:
# - set the opendune configuration at ~/.config/opendune/opendune.ini:
# [opendune]
# datadir=/path/to/opendune-data
# - download dune2 into [datadir] http://www.bestoldgames.net/eng/old-games/dune-2.php
stdenv.mkDerivation rec {
name = "opendune-${version}";
version = "0.9";
src = fetchFromGitHub {
owner = "OpenDUNE";
repo = "OpenDUNE";
rev = version;
sha256 = "15rvrnszdy3db8s0dmb696l4isb3x2cpj7wcl4j09pdi59pc8p37";
};
buildInputs = [ SDL SDL_image SDL_mixer ];
installPhase = ''
install -m 555 -D bin/opendune $out/bin/opendune
'';
meta = with stdenv.lib; {
description = "Dune, Reinvented";
homepage = https://github.com/OpenDUNE/OpenDUNE;
license = licenses.gpl2;
maintainers = [ maintainers.nand0p ];
platforms = platforms.linux;
};
}

@ -1358,6 +1358,8 @@ with pkgs;
meritous = callPackage ../games/meritous { };
opendune = callPackage ../games/opendune { };
meson = callPackage ../development/tools/build-managers/meson { };
metabase = callPackage ../servers/metabase { };

Loading…
Cancel
Save