Files
ccl-nixos-dotfiles/lib/stdlib-extended.nix
2025-04-13 15:09:14 +08:00

14 lines
227 B
Nix

# Just a convenience function that returns the given Nixpkgs standard
# library extended with the imxyy library.
stdlib:
let
mkMyLib = import ./.;
in
stdlib.extend (
self: super: {
my = mkMyLib { lib = self; };
}
)