Compare commits

..

2 Commits

Author SHA1 Message Date
b0707744e2 fix nixpkgs to 25.11, update to new zig api 2025-12-01 10:00:33 +01:00
ce2d957a88 flake: update 2025-09-23 22:05:08 +02:00
4 changed files with 19 additions and 14 deletions

View File

@@ -19,9 +19,11 @@ pub fn build(b: *std.Build) void {
.name = "zremap",
// In this case the main source file is merely a path, however, in more),
// complicated build scripts, this could be a generated file.
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
.root_module = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
}),
});
exe.linkLibC();
exe.linkSystemLibrary("evdev");
@@ -57,9 +59,11 @@ pub fn build(b: *std.Build) void {
// Creates a step for unit testing. This only builds the test executable
// but does not run it.
const unit_tests = b.addTest(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
.root_module = b.createModule(.{
.root_source_file = b.path("src/main.zig"),
.target = target,
.optimize = optimize,
}),
});
const run_unit_tests = b.addRunArtifact(unit_tests);

11
flake.lock generated
View File

@@ -2,11 +2,12 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1737299813,
"narHash": "sha256-Qw2PwmkXDK8sPQ5YQ/y/icbQ+TYgbxfjhgnkNJyT1X8=",
"path": "/nix/store/sbnwhhx7zjp45n53bkmnj4whg79aw8pq-source",
"rev": "107d5ef05c0b1119749e381451389eded30fb0d5",
"type": "path"
"lastModified": 1758446476,
"narHash": "sha256-5rdAi7CTvM/kSs6fHe1bREIva5W3TbImsto+dxG4mBo=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a1f79a1770d05af18111fbbe2a3ab2c42c0f6cd0",
"type": "github"
},
"original": {
"id": "nixpkgs",

View File

@@ -19,7 +19,7 @@
pkg-config
];
buildPhase = ''
NIX_CFLAGS_COMPILE="-static -isystem $(pkg-config --variable=includedir libevdev)/libevdev-1.0 $NIX_CFLAGS_COMPILE"
NIX_CFLAGS_COMPILE=" -isystem $(pkg-config --variable=includedir libevdev)/libevdev-1.0 $NIX_CFLAGS_COMPILE"
'';
};

View File

@@ -47,10 +47,10 @@ fn uinputWriteKey(uinput_dev: *c.libevdev_uinput, key: u16) !void {
const pressKey = c.input_event{ .type = c.EV_KEY, .code = key, .value = 1, .time = undefined };
const releaseKey = c.input_event{ .type = c.EV_KEY, .code = key, .value = 0, .time = undefined };
const sync = c.input_event{ .type = c.EV_SYN, .code = c.SYN_REPORT, .value = 0, .time = undefined };
std.time.sleep(20000);
std.Thread.sleep(20 * std.time.ns_per_ms);
try uinputWrite(uinput_dev, &pressKey);
try uinputWrite(uinput_dev, &sync);
std.time.sleep(20000);
std.Thread.sleep(20 * std.time.ns_per_ms);
try uinputWrite(uinput_dev, &releaseKey);
}