Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
812 B
Nix
40 lines
812 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
libusb1,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "wally-cli";
|
|
version = "2.0.1";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libusb1 ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zsa";
|
|
repo = "wally-cli";
|
|
rev = "${version}-linux";
|
|
sha256 = "NuyQHEygy4LNqLtrpdwfCR+fNy3ZUxOClVdRen6AXMc=";
|
|
};
|
|
|
|
vendorHash = "sha256-HffgkuKmaOjTYi+jQ6vBlC50JqqbYiikURT6TCqL7e0=";
|
|
|
|
meta = with lib; {
|
|
description = "Tool to flash firmware to mechanical keyboards";
|
|
mainProgram = "wally-cli";
|
|
homepage = "https://ergodox-ez.com/pages/wally-planck";
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
spacekookie
|
|
r-burns
|
|
];
|
|
};
|
|
}
|