72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
7 lines
221 B
Nix
7 lines
221 B
Nix
# Just a convenience function that returns the given Nixpkgs standard
|
|
# library extended with the HM library.
|
|
|
|
nixpkgsLib:
|
|
|
|
let mkHmLib = import ./.;
|
|
in nixpkgsLib.extend (self: super: { hm = mkHmLib { lib = super; }; })
|