mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkgconfig, jansson }:
|
|
|
|
let
|
|
libsailing = fetchFromGitHub {
|
|
owner = "sails-simulator";
|
|
repo = "libsailing";
|
|
rev = "9b2863ff0c539cd23d91b0254032a7af9c840574";
|
|
sha256 = "06rcxkwgms9sxqr1swnnc4jnvgs0iahm4cksd475yd1bp5p1gq6j";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
version = "0.3.0";
|
|
pname = "sailsd";
|
|
src = fetchFromGitHub {
|
|
owner = "sails-simulator";
|
|
repo = "sailsd";
|
|
rev = version;
|
|
sha256 = "1s4nlffp683binbdxwwzbsci61kbjylbcr1jf44sv1h1r5d5js05";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ jansson libsailing ];
|
|
|
|
INSTALL_PATH = "$(out)";
|
|
|
|
postUnpack = ''
|
|
rmdir $sourceRoot/libsailing
|
|
cp -r ${libsailing} $sourceRoot/libsailing
|
|
chmod 755 -R $sourceRoot/libsailing
|
|
'';
|
|
|
|
patchPhase = ''
|
|
substituteInPlace Makefile \
|
|
--replace gcc cc
|
|
'';
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|