add tuicr, replace buildRustPackage with naersk, remove overseer

This commit is contained in:
2026-03-04 10:48:02 +00:00
parent 98adb4061b
commit 90e3b752b0
8 changed files with 13 additions and 115 deletions

View File

@@ -1,15 +1,15 @@
{
inputs,
input,
prev,
}: let
naersk-lib = prev.callPackage inputs.naersk {};
manifest = (prev.lib.importTOML "${input}/Cargo.toml").package;
in
prev.rustPlatform.buildRustPackage {
naersk-lib.buildPackage {
pname = manifest.name;
version = manifest.version;
cargoLock.lockFile = "${input}/Cargo.lock";
src = input;
nativeBuildInputs = [prev.pkg-config];