mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
948 B
Nix
26 lines
948 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, boost }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-random-numbers";
|
|
version = "0.3.1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/ros-gbp/random_numbers-release/archive/release/kinetic/random_numbers/0.3.1-0.tar.gz;
|
|
sha256 = "0e74947775fe6c8be2e455d1d471e99467d7d3252ea9d850cd531bc8c0c5fe62";
|
|
};
|
|
|
|
buildInputs = [ boost ];
|
|
propagatedBuildInputs = [ boost ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''This library contains wrappers for generating floating point values, integers, quaternions using boost libraries.
|
|
|
|
The constructor of the wrapper is guaranteed to be thread safe and initialize its random number generator to a random seed.
|
|
Seeds are obtained using a separate and different random number generator.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|