mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
16 lines
226 B
Nix
16 lines
226 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(self: super:
|
|
{
|
|
hello = super.runCommand "hello" {} "mkdir $out";
|
|
})
|
|
];
|
|
|
|
test = ''
|
|
echo checking /bin/hello >&2
|
|
! ${pkgs.hello}/bin/hello
|
|
'';
|
|
}
|
|
|