mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
79 lines
1.5 KiB
Nix
79 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, cmake
|
|
, ninja
|
|
, makeWrapper
|
|
, xorg
|
|
, libGLU
|
|
, libGL
|
|
, SDL2
|
|
, openal
|
|
, fontconfig
|
|
, freealut
|
|
, freetype
|
|
, libogg
|
|
, libvorbis
|
|
, runtimeShell
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "astromenace";
|
|
version = "1.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "viewizard";
|
|
repo = "astromenace";
|
|
rev = "v${version}";
|
|
hash = "sha256-VFFFYHsBxkURHqOBeuRuIxRKsy8baw2izOZ/qXUkiW8=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://src.fedoraproject.org/rpms/astromenace/raw/5e6bc02d115a53007dc47ef8223d8eaa25607588/f/astromenace-gcc13.patch";
|
|
hash = "sha256-pkmTVR86vS+KCICxAp+d7upNWVnSNxwdKmxnbtqIvgU=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
makeWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
xorg.libICE
|
|
xorg.libX11
|
|
xorg.libXinerama
|
|
libGLU
|
|
libGL
|
|
SDL2
|
|
openal
|
|
fontconfig
|
|
freealut
|
|
freetype
|
|
libogg
|
|
libvorbis
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/astromenace
|
|
install -Dm644 gamedata.vfs $out/share/astromenace/gamedata.vfs
|
|
install -Dm755 astromenace $out/bin/astromenace
|
|
wrapProgram $out/bin/astromenace \
|
|
--add-flags "--dir=$out/share/astromenace"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Hardcore 3D space shooter with spaceship upgrade possibilities";
|
|
homepage = "https://www.viewizard.com/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
mainProgram = "astromenace";
|
|
maintainers = with maintainers; [ fgaz ];
|
|
};
|
|
}
|