23 lines
580 B
Nix
23 lines
580 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
let
|
|
pname = "waybar-kb";
|
|
in
|
|
buildGoModule {
|
|
inherit pname;
|
|
version = "2022-12-24";
|
|
|
|
src = fetchGit {
|
|
url = "https://git.cycore.io/scm/waybar-kb.git";
|
|
ref = "master";
|
|
sha256 = "sha256-XgHxRChcyeoUibIFAleROUCPskHDzZSD1Kl7FUMVt7U=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-rixop68iSE+OHjtMyLBbnphnjFBEtItqgheq2MyEfnc=";
|
|
|
|
meta = with lib; {
|
|
description = "waybar keyboard layout status and manipulator";
|
|
homepage = "https://git.cycore.io/scm/waybar-kb";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|