mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
8 lines
191 B
Nix
8 lines
191 B
Nix
{ lib }:
|
|
let
|
|
licenses = import ./licenses.nix { inherit lib; };
|
|
operators = import ./operators.nix;
|
|
helpers = import ./helpers.nix { inherit lib; };
|
|
in
|
|
licenses // operators // helpers
|