bscpkgs/test/ci.nix

33 lines
504 B
Nix
Raw Normal View History

{ self, super, bsc, testPkgs }:
2023-03-02 18:15:25 +08:00
let
stdenv = self.stdenv;
in
stdenv.mkDerivation rec {
name = "ci";
src = ./ci.nix;
dontUnpack = true;
# Just build some packages
buildInputs = testPkgs;
2023-03-02 18:15:25 +08:00
buildPhase = ''
if [ -e /boot ]; then
echo Build is NOT under chroot
echo This is the content of / :
ls -l /
exit 1
fi
echo "OK: Build is under chroot"
echo "buildInputs:"
printf -- "- %s\n" $buildInputs
2023-03-02 18:15:25 +08:00
'';
installPhase = ''
touch $out
'';
}