mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
10 lines
226 B
Nix
10 lines
226 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = [ pkgs.hello ];
|
|
|
|
test = ''
|
|
echo checking hello binary in /sw/bin >&2
|
|
test "$(readlink -f ${config.out}/sw/bin/hello)" = "${pkgs.hello}/bin/hello"
|
|
'';
|
|
}
|