nixmate: init at 0.7.2 (#490346)

This commit is contained in:
Paul Meyer
2026-02-16 12:18:59 +00:00
committed by GitHub
+34
View File
@@ -0,0 +1,34 @@
{
lib,
rustPlatform,
fetchFromGitHub,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nixmate";
version = "0.7.2";
src = fetchFromGitHub {
owner = "daskladas";
repo = "nixmate";
tag = "v${finalAttrs.version}";
hash = "sha256-Buabxhaq9P1u2zqRMGnFnCZczrxENa/Ux//F5wHkb1U=";
};
cargoHash = "sha256-c11NRt6qBNhj6JQeI7/80aYzuCY36ApsUWVnbRH7rRU=";
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
meta = {
description = "All your NixOS tools in one TUI generations, rebuilds, services, errors, and more";
homepage = "https://github.com/daskladas/nixmate";
changelog = "https://github.com/daskladas/nixmate/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
mainProgram = "nixmate";
};
})