miscellanious stuff

This commit is contained in:
2026-05-09 19:22:21 +02:00
parent 0c2e877c11
commit 5ae4d237e2
5 changed files with 166 additions and 4 deletions
+32
View File
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule {
pname = "z13ctl";
version = "1.1.6";
src = fetchFromGitHub {
owner = "dahui";
repo = "z13ctl";
rev = "v1.1.6";
hash = "sha256-21mdAzbw8JISDLG7iSEI4VCephDTtbioN0/RRxvCLR8=";
};
vendorHash = "sha256-ftkcianIR36PNAoMOVuk4lUr7goWUcHhjyNseUraJU0=";
subPackages = [ "." ];
__structuredAttrs = true;
meta = with lib; {
description = "Utility for ASUS ROG Flow Z13 (2025)";
homepage = "https://github.com/dahui/z13ctl";
license = licenses.asl20;
platforms = platforms.linux;
mainProgram = "z13ctl";
maintainers = with maintainers; [ badheuristic ];
};
}