feat: ralph, waybar, formatted

This commit is contained in:
jackjohn7 2026-03-28 18:35:54 -05:00
parent 774daebdff
commit 1eb01464e1
38 changed files with 1913 additions and 609 deletions

View file

@ -0,0 +1,26 @@
{ self, inputs, ... }:
{
perSystem =
{
pkgs,
lib,
self',
...
}:
{
packages.ralph = pkgs.rustPlatform.buildRustPackage rec {
pname = "ralph-cli";
version = "2.5.1";
src = pkgs.fetchFromGitHub {
owner = "mikeyobrien";
repo = "ralph-orchestrator";
rev = "v${version}";
sha256 = "sha256-K3/nTun6mwFwYagKtQDlKsnTpoAMRy62x5TtfRMRjQc=";
};
cargoHash = "sha256-BuCM2CAXRR8GqUyFvgpAECVXdeafzuViiX8EtzbHGoY=";
doCheck = false;
};
};
}