mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
29 lines
473 B
Nix
29 lines
473 B
Nix
{
|
|
runCommand,
|
|
srcOnly,
|
|
emptyDirectory,
|
|
glibc,
|
|
}:
|
|
|
|
let
|
|
emptySrc = srcOnly emptyDirectory;
|
|
glibcSrc = srcOnly glibc;
|
|
in
|
|
|
|
runCommand "srcOnly-tests" { } ''
|
|
# Test that emptySrc is empty
|
|
if [ -n "$(ls -A ${emptySrc})" ]; then
|
|
echo "emptySrc is not empty"
|
|
exit 1
|
|
fi
|
|
|
|
# Test that glibcSrc is not empty
|
|
if [ -z "$(ls -A ${glibcSrc})" ]; then
|
|
echo "glibcSrc is empty"
|
|
exit 1
|
|
fi
|
|
|
|
# Make $out exist to avoid build failure
|
|
mkdir -p $out
|
|
''
|