Files
sso-bsn/default.nix
bluepython508 a0fc306df1 Macos build
2023-11-07 20:28:46 +00:00

22 lines
369 B
Nix

{
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";
}