mirror of
https://github.com/zaphar/dbt-nix.git
synced 2025-07-21 19:40:31 -04:00
Add custom shells for various plugins
This commit is contained in:
parent
49decc7aea
commit
eb7d3644db
@ -34,5 +34,11 @@
|
||||
devShell = pkgs.mkShell {
|
||||
packages = [ dbt-core dbt-redshift dbt-postgres pkgs.python39 pkgs.python39Packages.pip ];
|
||||
};
|
||||
devShells = {
|
||||
full = pkgs.mkShell { packages = [ dbt-core dbt-postgres dbt-redshift ]; };
|
||||
core = pkgs.mkShell { packages = [ dbt-core ]; };
|
||||
postgres = pkgs.mkShell { packages = [dbt-core dbt-postgres ]; };
|
||||
redshift = pkgs.mkShell { packages = [dbt-core dbt-redshift ]; };
|
||||
};
|
||||
});
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user