mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, SDL2, cmake, makeWrapper }:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "nanosaur2";
|
||
version = "2.1.0";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "jorio";
|
||
repo = pname;
|
||
rev = "v${version}";
|
||
sha256 = "sha256-UY+fyn8BA/HfCd2LCj5cfGmQACKUICH6CDCW4q6YDkg=";
|
||
fetchSubmodules = true;
|
||
};
|
||
|
||
nativeBuildInputs = [
|
||
cmake
|
||
makeWrapper
|
||
];
|
||
buildInputs = [
|
||
SDL2
|
||
];
|
||
|
||
installPhase = ''
|
||
runHook preInstall
|
||
mkdir -p "$out/bin"
|
||
mkdir -p "$out/share/Nanosaur2"
|
||
mv Data ReadMe.txt "$out/share/Nanosaur2/"
|
||
install -Dm755 {.,$out/bin}/Nanosaur2
|
||
wrapProgram $out/bin/Nanosaur2 --chdir "$out/share/Nanosaur2"
|
||
install -Dm644 $src/packaging/nanosaur2.desktop $out/share/applications/nanosaur2.desktop
|
||
install -Dm644 $src/packaging/nanosaur2-desktopicon.png $out/share/pixmaps/nanosaur2-desktopicon.png
|
||
runHook postInstall
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "A port of Nanosaur2, a 2004 Macintosh game by Pangea Software, for modern operating systems";
|
||
longDescription = ''
|
||
Nanosaur is a 2004 Macintosh game by Pangea Software.
|
||
|
||
Is a continuation of the original Nanosaur storyline, only this time you get to fly a pterodactyl who’s loaded with hi-tech weaponry.
|
||
'';
|
||
homepage = "https://github.com/jorio/Nanosaur2";
|
||
license = licenses.cc-by-sa-40;
|
||
maintainers = with maintainers; [ lux ];
|
||
platforms = platforms.linux;
|
||
};
|
||
}
|