2025-04-21 20:30:58 +02:00

37 lines
798 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cargo-ament-build";
version = "0.1.9";
src = fetchFromGitHub {
owner = "ros2-rust";
repo = "cargo-ament-build";
tag = "v${finalAttrs.version}";
hash = "sha256-5D0eB3GCQLgVYuYkHMTkboruiYSAaWy3qZjF/hVpRP0=";
};
cargoLock.lockFile = ./Cargo.lock;
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
nativeBuildInputs = [ pkg-config ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Cargo plugin for use with colcon workspaces";
homepage = "https://github.com/ros2-rust/cargo-ament-build";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ guelakais ];
};
})