1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-11 12:49:18 +03:00
nix-darwin/tests/nixpkgs-overlays.nix
2018-01-07 00:06:53 +01:00

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
'';
}