add default.nix
This commit is contained in:
parent
70866e5917
commit
87f643c740
1 changed files with 23 additions and 0 deletions
23
default.nix
Normal file
23
default.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue