mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-16 13:28:16 +00:00
17 lines
226 B
Nix
17 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
|
||
|
'';
|
||
|
}
|
||
|
|