mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 13:40:32 +03:00
7 lines
210 B
Nix
7 lines
210 B
Nix
{ nixpkgs ? builtins.fetchTarball "https://github.com/lopsided98/nixpkgs/archive/nix-ros.tar.gz"
|
|
, overlays ? []
|
|
, ... }@args:
|
|
|
|
import nixpkgs (args // {
|
|
overlays = [ (import ./overlay.nix) ] ++ overlays;
|
|
})
|