2020-01-16 22:41:14 +00:00
|
|
|
# Just a convenience function that returns the given Nixpkgs standard
|
|
|
|
# library extended with the HM library.
|
|
|
|
|
|
|
|
nixpkgsLib:
|
|
|
|
|
2020-02-01 23:39:17 +00:00
|
|
|
let mkHmLib = import ./.;
|
|
|
|
in nixpkgsLib.extend (self: super: { hm = mkHmLib { lib = super; }; })
|