mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 17:54:49 +03:00
6 lines
132 B
Nix
6 lines
132 B
Nix
{ overlays ? [] }@args: import <nixpkgs> {
|
|
overlays = [
|
|
(import ./base.nix)
|
|
(import ./melodic)
|
|
] ++ overlays;
|
|
} // args
|