2017-03-11 09:03:37 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2019-01-18 22:18:45 +00:00
|
|
|
let
|
|
|
|
hello = pkgs.runCommand "hello-0.0.0" {} ''
|
|
|
|
mkdir -p $out/bin $out/lib
|
|
|
|
touch $out/bin/hello $out/lib/libhello.dylib
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
|
2017-03-11 09:03:37 +00:00
|
|
|
{
|
2019-01-18 22:36:15 +00:00
|
|
|
environment.systemPackages = [ hello ];
|
2017-03-11 09:03:37 +00:00
|
|
|
|
|
|
|
test = ''
|
|
|
|
echo checking hello binary in /sw/bin >&2
|
2019-01-18 22:18:45 +00:00
|
|
|
test -e ${config.out}/sw/bin/hello
|
2019-01-18 22:36:15 +00:00
|
|
|
test "$(readlink -f ${config.out}/sw/bin/hello)" = "${hello}/bin/hello"
|
2019-01-18 22:18:45 +00:00
|
|
|
|
|
|
|
echo checking for unexpected paths in /sw/bin >&2
|
2019-01-18 22:36:15 +00:00
|
|
|
test -e ${config.out}/sw/lib/libhello.dylib && return
|
2017-03-11 09:03:37 +00:00
|
|
|
'';
|
|
|
|
}
|