nixpkgs/pkgs/games/opendune/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, pkg-config
2019-03-26 13:20:34 +00:00
, alsaLib, libpulseaudio, SDL2, SDL2_image, SDL2_mixer }:
2018-06-05 18:39:24 +00:00
# - 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 {
pname = "opendune";
2018-06-05 18:39:24 +00:00
version = "0.9";
src = fetchFromGitHub {
owner = "OpenDUNE";
repo = "OpenDUNE";
rev = version;
sha256 = "15rvrnszdy3db8s0dmb696l4isb3x2cpj7wcl4j09pdi59pc8p37";
};
2019-03-26 13:20:34 +00:00
configureFlags = [
"--with-alsa=${lib.getLib alsaLib}/lib/libasound.so"
"--with-pulse=${lib.getLib libpulseaudio}/lib/libpulse.so"
];
nativeBuildInputs = [ pkg-config ];
2019-03-26 13:20:34 +00:00
buildInputs = [ alsaLib libpulseaudio SDL2 SDL2_image SDL2_mixer ];
enableParallelBuilding = true;
2018-06-05 18:39:24 +00:00
installPhase = ''
2019-03-26 13:20:34 +00:00
runHook preInstall
install -Dm555 -t $out/bin bin/opendune
install -Dm444 -t $out/share/doc/opendune enhancement.txt README.txt
runHook postInstall
2018-06-05 18:39:24 +00:00
'';
meta = with lib; {
2018-06-05 18:39:24 +00:00
description = "Dune, Reinvented";
homepage = "https://github.com/OpenDUNE/OpenDUNE";
2018-06-05 18:39:24 +00:00
license = licenses.gpl2;
2019-03-26 13:20:34 +00:00
maintainers = with maintainers; [ nand0p ];
2018-06-05 18:39:24 +00:00
};
}