Macos build

This commit is contained in:
bluepython508
2023-11-07 20:28:31 +00:00
parent 092930a24f
commit a0fc306df1
3 changed files with 60 additions and 31 deletions

View File

@@ -1,14 +1,21 @@
{ lib, self, mixRelease, fetchMixDeps, elixir }: mixRelease rec {
pname = "sso_bsn";
version = "0.0.1";
{
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=";
};
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";
ELIXIR_MAKE_CACHE_DIR = "/tmp/.elixir-make-cache";
}