depot/third_party/nixpkgs/pkgs/games/nanosaur2/default.nix
Default email 6d4aeb4377 Project import generated by Copybara.
GitOrigin-RevId: 0f213d0fee84280d8c3a97f7469b988d6fe5fcdf
2023-01-11 08:51:40 +01:00

45 lines
1.2 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ 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
];
cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Release" ];
installPhase = ''
runHook preInstall
mkdir -p "$out/bin"
mv Nanosaur2 Data ReadMe.txt "$out/"
makeWrapper $out/Nanosaur2 $out/bin/Nanosaur2 --chdir "$out"
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 whos loaded with hi-tech weaponry.
'';
homepage = "https://github.com/jorio/Nanosaur2";
license = licenses.cc-by-sa-40;
maintainers = with maintainers; [ lux ];
platforms = platforms.linux;
};
}