blob: d2cc524254fabd33503fcd4b20276166b7c4e117 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ 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"
'';
}
|