nixpkgs/pkgs/by-name/sa/sailsd/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

50 lines
1.3 KiB
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, 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 = [ pkg-config ];
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;
mainProgram = "sailsd";
};
}