1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/melodic/variant/default.nix

25 lines
751 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, variant-msgs, variant-topic-tools }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-variant";
version = "0.1.6-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/anybotics/variant-release/archive/release/melodic/variant/0.1.6-1.tar.gz";
name = "0.1.6-1.tar.gz";
sha256 = "80377608569aefc0f130260b9455cab543d039cbc510880c59fe6fb9872401b5";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ variant-msgs variant-topic-tools ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''Meta-package for the universal variant library.'';
license = with lib.licenses; [ lgpl2 ];
2019-03-21 00:14:59 -04:00
};
}