From 3b6550c29bee1431d876c5aaf348c34b2e08f95c Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Sat, 14 May 2016 10:05:37 +0100 Subject: 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. --- pkgs/misc/sailsd/default.nix | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 pkgs/misc/sailsd/default.nix (limited to 'pkgs/misc/sailsd') 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; + }; +} -- cgit v1.2.3