init v0
This commit is contained in:
parent
561ea7543d
commit
43e6b6d318
25 changed files with 8063 additions and 374 deletions
34
deps.nix
34
deps.nix
|
|
@ -233,6 +233,23 @@ let
|
|||
beamDeps = [ decimal jason telemetry ];
|
||||
};
|
||||
|
||||
ecto_psql_extras =
|
||||
let
|
||||
version = "0.8.2";
|
||||
in
|
||||
buildMix {
|
||||
inherit version;
|
||||
name = "ecto_psql_extras";
|
||||
|
||||
src = fetchHex {
|
||||
inherit version;
|
||||
pkg = "ecto_psql_extras";
|
||||
sha256 = "6149c1c4a5ba6602a76cb09ee7a269eb60dab9694a1dbbb797f032555212de75";
|
||||
};
|
||||
|
||||
beamDeps = [ ecto_sql postgrex table_rex ];
|
||||
};
|
||||
|
||||
ecto_sql =
|
||||
let
|
||||
version = "3.12.1";
|
||||
|
|
@ -490,7 +507,7 @@ let
|
|||
sha256 = "2984aae96994fbc5c61795a73b8fb58153b41ff934019cfb522343d2d3817d59";
|
||||
};
|
||||
|
||||
beamDeps = [ ecto mime phoenix_live_view telemetry_metrics ];
|
||||
beamDeps = [ ecto ecto_psql_extras mime phoenix_live_view telemetry_metrics ];
|
||||
};
|
||||
|
||||
phoenix_live_view =
|
||||
|
|
@ -608,6 +625,21 @@ let
|
|||
beamDeps = [ bandit finch jason mime plug telemetry ];
|
||||
};
|
||||
|
||||
table_rex =
|
||||
let
|
||||
version = "4.0.0";
|
||||
in
|
||||
buildMix {
|
||||
inherit version;
|
||||
name = "table_rex";
|
||||
|
||||
src = fetchHex {
|
||||
inherit version;
|
||||
pkg = "table_rex";
|
||||
sha256 = "c35c4d5612ca49ebb0344ea10387da4d2afe278387d4019e4d8111e815df8f55";
|
||||
};
|
||||
};
|
||||
|
||||
tailwind =
|
||||
let
|
||||
version = "0.2.4";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue