2026-04-22 18:50:31 +02:00
|
|
|
# m3ta-nixpkgs package registry
|
|
|
|
|
#
|
|
|
|
|
# Flake inputs used:
|
|
|
|
|
# inputs.basecamp → basecamp (pass-through)
|
2026-07-30 07:01:22 +02:00
|
|
|
# inputs.opencode → opencode-desktop (Electron desktop app, pure pass-through)
|
2026-04-22 18:50:31 +02:00
|
|
|
# inputs.agents → not used directly here (used by lib/)
|
2026-02-14 07:15:06 +01:00
|
|
|
{
|
|
|
|
|
pkgs,
|
2026-03-07 10:03:16 +01:00
|
|
|
inputs,
|
2026-02-14 07:15:06 +01:00
|
|
|
...
|
2026-03-27 11:56:04 +01:00
|
|
|
}: let
|
|
|
|
|
system = pkgs.stdenv.hostPlatform.system;
|
|
|
|
|
in {
|
2026-04-22 18:50:31 +02:00
|
|
|
# ── Local packages ────────────────────────────────────────────────
|
|
|
|
|
# Standard packages built from source in ./<name>/default.nix.
|
|
|
|
|
# No flake inputs required.
|
|
|
|
|
|
2026-02-14 07:15:06 +01:00
|
|
|
sidecar = pkgs.callPackage ./sidecar {};
|
|
|
|
|
td = pkgs.callPackage ./td {};
|
|
|
|
|
hyprpaper-random = pkgs.callPackage ./hyprpaper-random {};
|
|
|
|
|
launch-webapp = pkgs.callPackage ./launch-webapp {};
|
|
|
|
|
mem0 = pkgs.callPackage ./mem0 {};
|
|
|
|
|
msty-studio = pkgs.callPackage ./msty-studio {};
|
|
|
|
|
pomodoro-timer = pkgs.callPackage ./pomodoro-timer {};
|
|
|
|
|
rofi-project-opener = pkgs.callPackage ./rofi-project-opener {};
|
|
|
|
|
stt-ptt = pkgs.callPackage ./stt-ptt {};
|
|
|
|
|
tuxedo-backlight = pkgs.callPackage ./tuxedo-backlight {};
|
2026-03-16 10:27:54 +01:00
|
|
|
kestractl = pkgs.callPackage ./kestractl {};
|
2026-03-23 19:56:15 +01:00
|
|
|
openshell = pkgs.callPackage ./openshell {};
|
2026-06-15 07:11:19 +02:00
|
|
|
openwork = pkgs.callPackage ./openwork {};
|
2026-02-14 07:15:06 +01:00
|
|
|
zellij-ps = pkgs.callPackage ./zellij-ps {};
|
2026-04-03 10:58:03 +02:00
|
|
|
vibetyper = pkgs.callPackage ./vibetyper {};
|
2026-07-02 18:51:31 +02:00
|
|
|
talk = pkgs.callPackage ./talk {};
|
2026-07-02 19:36:24 +02:00
|
|
|
crunch = pkgs.callPackage ./crunch {};
|
2026-01-20 18:32:28 +01:00
|
|
|
|
2026-04-22 18:50:31 +02:00
|
|
|
# ── Pass-through packages ──────────────────────────────────────────
|
|
|
|
|
# Imported directly from flake inputs. No local modifications.
|
|
|
|
|
|
2026-08-02 13:35:26 +02:00
|
|
|
# basecamp: tracked at github:basecamp/basecamp-cli/v0.8.0-rc.1.
|
|
|
|
|
# The rc.1 tag ships a stale nix/package.nix:
|
|
|
|
|
# - vendorHash does not match the tagged go.sum (buildGoModule FOD fails)
|
|
|
|
|
# - `version` was not bumped and still reads "0.7.2"
|
|
|
|
|
# We override both here so the input builds and reports the rc.1 version.
|
|
|
|
|
# When upstream fixes package.nix (expected for the 0.8.0 final), drop this
|
|
|
|
|
# override back to the plain pass-through.
|
2026-08-08 17:46:02 +02:00
|
|
|
# basecamp = inputs.basecamp.packages.${system}.default.overrideAttrs (_: {
|
|
|
|
|
# version = "0.8.0-rc.1";
|
|
|
|
|
# vendorHash = "sha256-m1UF/Ga9C9GJF0JtZMXFOX88chb+f279/aoAaiwfxvg=";
|
|
|
|
|
# # src stays the flake input (lib.cleanSource ./.. pinned by flake.lock to
|
|
|
|
|
# # rc.1) — only the version label that upstream forgot to bump is corrected.
|
|
|
|
|
# __intentionallyOverridingVersion = true;
|
|
|
|
|
# });
|
|
|
|
|
basecamp = inputs.basecamp.packages.${system}.default;
|
2026-07-30 07:01:22 +02:00
|
|
|
opencode-desktop = inputs.opencode.packages.${system}.opencode-desktop;
|
2026-08-08 17:46:02 +02:00
|
|
|
|
|
|
|
|
# buzz: Block's "hive mind" desktop app. Consumed from mulatta/buzz.nix
|
|
|
|
|
# because the upstream AppImage lacks the sidecars + Tauri GStreamer
|
|
|
|
|
# integration needed to actually run. Exposed under both `buzz-desktop`
|
|
|
|
|
# (mulatta's name) and `buzz` (the short alias). Builds entirely from
|
|
|
|
|
# source — no third-party binary cache. First build is slow (Rust + Tauri
|
|
|
|
|
# + sherpa-onnx); subsequent builds are cached in the local nix store.
|
|
|
|
|
# Note: mulatta only publishes packages for x86_64-linux, aarch64-linux,
|
|
|
|
|
# aarch64-darwin — x86_64-darwin will throw at build time.
|
|
|
|
|
buzz-desktop = inputs.buzz.packages.${system}.buzz-desktop;
|
|
|
|
|
buzz = inputs.buzz.packages.${system}.buzz-desktop;
|
2025-10-04 15:53:48 +02:00
|
|
|
}
|