akkoma: remove all-packages.nix definition

This commit is contained in:
Michael Daniels
2025-12-26 19:42:17 -05:00
parent 088b069b82
commit 1a0a0ef0ab
2 changed files with 11 additions and 12 deletions
+11 -1
View File
@@ -1,6 +1,6 @@
{
lib,
beamPackages,
beam_minimal,
fetchFromGitea,
cmake,
file,
@@ -8,6 +8,16 @@
nix-update-script,
}:
let
beamPackages = beam_minimal.packages.erlang_26.extend (
self: super: {
elixir = self.elixir_1_16;
rebar3 = self.rebar3WithPlugins {
plugins = with self; [ pc ];
};
}
);
in
beamPackages.mixRelease rec {
pname = "akkoma";
version = "3.17.0";
-11
View File
@@ -974,17 +974,6 @@ with pkgs;
opnplug = adlplug.override { type = "OPN"; };
akkoma = callPackage ../by-name/ak/akkoma/package.nix {
beamPackages = beam_minimal.packages.erlang_26.extend (
self: super: {
elixir = self.elixir_1_16;
rebar3 = self.rebar3WithPlugins {
plugins = with self; [ pc ];
};
}
);
};
akkoma-admin-fe = callPackage ../by-name/ak/akkoma-admin-fe/package.nix {
python3 = python311;
};