mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
miscellanious stuff
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user