1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00
nix/tests/functional/flakes/bundle.sh

35 lines
903 B
Bash
Executable file

#!/usr/bin/env bash
source common.sh
cp ../simple.nix ../simple.builder.sh ../config.nix "$TEST_HOME"
cd "$TEST_HOME"
cat <<EOF > flake.nix
{
outputs = {self}: {
bundlers.$system = rec {
simple = drv:
if drv?type && drv.type == "derivation"
then drv
else self.packages.$system.default;
default = simple;
};
packages.$system.default = import ./simple.nix;
apps.$system.default = {
type = "app";
program = "\${import ./simple.nix}/hello";
};
};
}
EOF
nix build .#
nix bundle --bundler .# .#
nix bundle --bundler .#bundlers."$system".default .#packages."$system".default
nix bundle --bundler .#bundlers."$system".simple .#packages."$system".default
nix bundle --bundler .#bundlers."$system".default .#apps."$system".default
nix bundle --bundler .#bundlers."$system".simple .#apps."$system".default