blob: 092e2d3e67e73666a2e87e29a9ad18d3403bff62 (
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/hello"
'';
}
|