2021-01-17 02:30:45 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, jansson }:
|
2016-05-14 09:05:37 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
libsailing = fetchFromGitHub {
|
|
|
|
owner = "sails-simulator";
|
|
|
|
repo = "libsailing";
|
2019-10-26 17:28:19 +00:00
|
|
|
rev = "9b2863ff0c539cd23d91b0254032a7af9c840574";
|
|
|
|
sha256 = "06rcxkwgms9sxqr1swnnc4jnvgs0iahm4cksd475yd1bp5p1gq6j";
|
2016-05-14 09:05:37 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2019-10-26 17:28:19 +00:00
|
|
|
version = "0.3.0";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sailsd";
|
2016-05-14 09:05:37 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sails-simulator";
|
|
|
|
repo = "sailsd";
|
2019-09-08 23:38:31 +00:00
|
|
|
rev = version;
|
2019-10-26 17:28:19 +00:00
|
|
|
sha256 = "1s4nlffp683binbdxwwzbsci61kbjylbcr1jf44sv1h1r5d5js05";
|
2016-05-14 09:05:37 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 02:30:45 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ jansson libsailing ];
|
2016-05-14 09:05:37 +00:00
|
|
|
|
|
|
|
INSTALL_PATH = "$(out)";
|
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
rmdir $sourceRoot/libsailing
|
|
|
|
cp -r ${libsailing} $sourceRoot/libsailing
|
|
|
|
chmod 755 -R $sourceRoot/libsailing
|
|
|
|
'';
|
|
|
|
|
2016-08-12 05:09:03 +00:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace gcc cc
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-05-14 09:05:37 +00:00
|
|
|
description = "Simulator daemon for autonomous sailing boats";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/sails-simulator/sailsd";
|
2016-05-14 09:05:37 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
longDescription = ''
|
|
|
|
Sails is a simulator designed to test the AI of autonomous sailing
|
|
|
|
robots. It emulates the basic physics of sailing a small single sail
|
|
|
|
boat'';
|
|
|
|
maintainers = with maintainers; [ kragniz ];
|
|
|
|
platforms = platforms.all;
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "sailsd";
|
2016-05-14 09:05:37 +00:00
|
|
|
};
|
|
|
|
}
|