add oh-my-pi

This commit is contained in:
2026-05-22 15:42:45 +02:00
parent 65de45f673
commit 419c218ce1
7 changed files with 324 additions and 16 deletions
+14 -9
View File
@@ -1,9 +1,14 @@
self: super:
{
opencode-claude-auth = super.callPackage ../pkgs/opencode-claude-auth {};
# Build failure 08.05.2026
# https://github.com/NixOS/nixpkgs/issues/513245#issuecomment-4320293674
openldap = super.openldap.overrideAttrs {
doCheck = !super.stdenv.hostPlatform.isi686;
};
}
{ bun2nix }:
[
bun2nix.overlays.default
(final: prev: {
oh-my-pi = final.callPackage ../pkgs/oh-my-pi { inherit (final) bun2nix; };
opencode-claude-auth = prev.callPackage ../pkgs/opencode-claude-auth { };
# Build failure 08.05.2026
# https://github.com/NixOS/nixpkgs/issues/513245#issuecomment-4320293674
openldap = prev.openldap.overrideAttrs {
doCheck = !prev.stdenv.hostPlatform.isi686;
};
})
]