Update nixpkgs and nix-ros-overlay

This fixes zsh CLI completion. For some magic reason, previously used
combination of versions produced completion file _ros2nix without
"#compdef ros2nix" on its first line, which breaks zsh completion
autoloading.

Switching of both nixpkgs and nix-ros-overlay to the latest versions
fixes the problem. Switching only one of these led to various other
problems, so we do both.
This commit is contained in:
Michal Sojka 2024-10-03 00:05:04 +02:00
parent 8a9f703575
commit af42011236
2 changed files with 16 additions and 17 deletions

View file

@ -1,8 +1,8 @@
{
description = "Tool to convert ROS package.xml to Nix expressions compatible with nix-ros-overlay";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nix-ros-overlay.url = "github:lopsided98/nix-ros-overlay/master";
inputs.nixpkgs.follows = "nix-ros-overlay/nixpkgs";
inputs.nix-ros-overlay = { url = "github:lopsided98/nix-ros-overlay/develop"; inputs.nixpkgs.follows = "nixpkgs"; };
inputs.rosdistro = { url = "github:ros/rosdistro"; flake = false; };
inputs.flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";