summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/sailsd
diff options
context:
space:
mode:
authorLouis Taylor <louis@kragniz.eu>2016-05-14 10:05:37 +0100
committerPascal Wittmann <PascalWittmann@gmx.net>2016-05-14 11:05:37 +0200
commit3b6550c29bee1431d876c5aaf348c34b2e08f95c (patch)
treeecd16bb160af0fd9a3a5aa68b30bd8a4ae790b25 /pkgs/misc/sailsd
parent83a89d03d23df090e6a416dfdf0820a1db614ab7 (diff)
sailsd: 0.1.1 -> 0.2.0 (#15445)
Sails has now been split into a few subcomponents, sailsd being the main one. This package has been renamed to sailsd, the sailing simulation daemon.
Diffstat (limited to 'pkgs/misc/sailsd')
-rw-r--r--pkgs/misc/sailsd/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/misc/sailsd/default.nix b/pkgs/misc/sailsd/default.nix
new file mode 100644
index 000000000000..7ae0ebbf84af
--- /dev/null
+++ b/pkgs/misc/sailsd/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchFromGitHub, pkgconfig, jansson }:
+
+let
+ libsailing = fetchFromGitHub {
+ owner = "sails-simulator";
+ repo = "libsailing";
+ rev = "c24cddb717f81cd432868b8d41e04486c0a440fd";
+ sha256 = "0mna0c9n8lvfdf4y1iigjy3dlks70hq6jik52zkik2yxvkqv949f";
+ };
+in
+stdenv.mkDerivation rec {
+ version = "0.2.0";
+ name = "sailsd-${version}";
+ src = fetchFromGitHub {
+ owner = "sails-simulator";
+ repo = "sailsd";
+ rev = "${version}";
+ sha256 = "147cr4aw1kw4gv3bhn0cska855kmyah8m70vdw1q2lwz56lbf4mb";
+ };
+
+ buildInputs = [ pkgconfig jansson libsailing ];
+
+ INSTALL_PATH = "$(out)";
+
+ postUnpack = ''
+ rmdir $sourceRoot/libsailing
+ cp -r ${libsailing} $sourceRoot/libsailing
+ chmod 755 -R $sourceRoot/libsailing
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Simulator daemon for autonomous sailing boats";
+ homepage = https://github.com/sails-simulator/sailsd;
+ 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;
+ };
+}