mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Merge pull request #4516 from kragniz/master
Add simulator for autonomous sailing boats
This commit is contained in:
commit
d34a989442
|
@ -77,6 +77,7 @@
|
|||
jwiegley = "John Wiegley <johnw@newartisans.com>";
|
||||
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
||||
koral = "Koral <koral@mailoo.org>";
|
||||
kragniz = "Louis Taylor <kragniz@gmail.com>";
|
||||
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
|
||||
lethalman = "Luca Bruno <lucabru@src.gnome.org>";
|
||||
lhvwb = "Nathaniel Baxter <nathaniel.baxter@gmail.com>";
|
||||
|
|
24
pkgs/misc/sails/default.nix
Normal file
24
pkgs/misc/sails/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, cmake, pkgconfig, gtk3, librsvg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.1.1";
|
||||
name = "sails-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/kragniz/sails/archive/v${version}.tar.gz";
|
||||
sha256 = "0k55ib6cb78filgq3yrdib69qrzsny0209bq6h0v1yigry0sa62v";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake pkgconfig gtk3 librsvg ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simulator for autonomous sailing boats";
|
||||
homepage = https://github.com/kragniz/sails;
|
||||
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 = maintainers.kragniz;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -12057,6 +12057,8 @@ let
|
|||
|
||||
xlockmore = callPackage ../misc/screensavers/xlockmore { };
|
||||
|
||||
sails = callPackage ../misc/sails { };
|
||||
|
||||
samsungUnifiedLinuxDriver = import ../misc/cups/drivers/samsung {
|
||||
inherit fetchurl stdenv;
|
||||
inherit cups ghostscript glibc patchelf;
|
||||
|
|
Loading…
Reference in a new issue