You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
360 B
Nix
17 lines
360 B
Nix
# Nixpkgs overlay which aggregates overlays for tools and products, used and
|
|
# published by Mozilla.
|
|
self: super:
|
|
|
|
with super.lib;
|
|
|
|
(foldl' (flip extends) (_: super) [
|
|
|
|
(import ./lib-overlay.nix)
|
|
(import ./rust-overlay.nix)
|
|
(import ./rr-overlay.nix)
|
|
(import ./firefox-overlay.nix)
|
|
(import ./vidyo-overlay.nix)
|
|
(import ./servo-overlay.nix)
|
|
|
|
]) self
|