1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-06 00:37:00 +00:00
nix-darwin/tests/system-packages.nix

11 lines
225 B
Nix
Raw Normal View History

2017-03-11 10:03:37 +01:00
{ 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/foo"
'';
}