nix-direnv/pkgs/bash4/flake-module.nix
Jörg Thalheim 1ad869dfe9 bash4: only test on x86_64-linux
Should be enough to catch language regressions.
2023-12-21 10:58:10 +01:00

14 lines
426 B
Nix

{ self, withSystem, ... }: {
flake.packages.x86_64-linux = withSystem "x86_64-linux"
({ pkgs, ... }: {
bash4 = pkgs.callPackage ./. { };
direnv-bash4 = pkgs.direnv.override {
bash = self.packages.x86_64-linux.bash4;
};
test-runner-bash4 = pkgs.callPackage ../../test-runner.nix {
nixVersion = "stable";
direnv = self.packages.x86_64-linux.direnv-bash4;
};
});
}