1
0
Fork 0

fix: use beam_nox and erlang_26
All checks were successful
Build / build-amd64-linux (push) Successful in 29s
Build / build-arm64-linux (push) Successful in 47s

This commit is contained in:
Daniel Kempkens 2024-05-31 17:58:21 +02:00
parent a57a4b0f0d
commit fdfb6314fb
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
let
erlang = pkgs.beam_nox.interpreters.erlang_26;
beamPackages = pkgs.beam.packagesWith erlang;
beamPackages = pkgs.beam_nox.packagesWith erlang;
in
beamPackages.mixRelease rec {
pname = "lexical";

View file

@ -1,7 +1,7 @@
{ pkgs, lib, ... }:
let
erlang = pkgs.beam_nox.interpreters.erlangR26;
erlang = pkgs.beam_nox.interpreters.erlang_26;
beamPackages = pkgs.beam_nox.packagesWith erlang;
in
beamPackages.mixRelease rec {