1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/games/antsimulator/default.nix

42 lines
1 KiB
Nix
Raw Normal View History

2021-04-06 01:02:41 +01:00
{ lib, stdenv, fetchFromGitHub, cmake, sfml }:
stdenv.mkDerivation rec {
pname = "antsimulator";
2021-08-10 12:05:35 +01:00
version = "3.1";
2021-04-06 01:02:41 +01:00
src = fetchFromGitHub {
owner = "johnBuffer";
repo = "AntSimulator";
rev = "v${version}";
2021-08-10 12:05:35 +01:00
sha256 = "sha256-1KWoGbdjF8VI4th/ZjAzASgsLEuS3xiwObulzxQAppA=";
2021-04-06 01:02:41 +01:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ sfml ];
2021-08-11 02:31:46 +01:00
postPatch = ''
substituteInPlace src/main.cpp \
--replace "res/" "$out/opt/antsimulator/"
substituteInPlace include/simulation/config.hpp \
--replace "res/" "$out/opt/antsimulator/"
substituteInPlace include/render/colony_renderer.hpp \
--replace "res/" "$out/opt/antsimulator/"
'';
2021-04-06 01:02:41 +01:00
installPhase = ''
2021-08-11 02:31:46 +01:00
install -Dm644 -t $out/opt/antsimulator res/*
2021-04-06 01:02:41 +01:00
install -Dm755 ./AntSimulator $out/bin/antsimulator
'';
meta = with lib; {
homepage = "https://github.com/johnBuffer/AntSimulator";
description = "Simple Ants simulator";
mainProgram = "antsimulator";
license = licenses.mit;
maintainers = [ ];
2021-04-06 01:02:41 +01:00
platforms = platforms.unix;
};
}