Initial Commit

This commit is contained in:
bluepython508
2023-11-01 17:27:15 +00:00
commit 45e4e9f5da
929 changed files with 5425 additions and 0 deletions

14
default.nix Normal file
View File

@@ -0,0 +1,14 @@
{ lib, self, mixRelease, fetchMixDeps, elixir }: mixRelease rec {
pname = "sso_bsn";
version = "0.0.1";
inherit elixir;
src = self;
mixFodDeps = fetchMixDeps {
pname = "mix-deps-${pname}";
inherit version src;
sha256 = "sha256-hQlMy0e1Kv2zBXYCiNHYlIO0N00wuIW8B+ZlsEMTSy0=";
};
ELIXIR_MAKE_CACHE_DIR = "/tmp/.elixir-make-cache";
}