mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
13 lines
151 B
Nix
13 lines
151 B
Nix
_:
|
|
{ apps, callPackage, ... }:
|
|
{
|
|
|
|
apps = apps.extend (
|
|
self: super: {
|
|
|
|
hmr_enabler = callPackage ./apps/hmr_enabler.nix { };
|
|
|
|
}
|
|
);
|
|
}
|