poprawienie flake'a i dodanie licencji

This commit is contained in:
2025-12-06 23:06:45 +01:00
parent ba24e36c7a
commit 8940198d02
3 changed files with 21 additions and 15 deletions

View File

@@ -1,11 +1,24 @@
{
lib,
rustPlatform,
pkg-config,
}:
rustPlatform.buildRustPackage {
name = "garandos-tui";
pname = "garandos-tui";
version = "0.1.0";
src = ./.;
# buildInputs = [ ];
nativeBuildInputs = [pkg-config];
cargoHash = "sha256-cFAkKwgLzj6Hr2pq7W/1Ps1G3yKzgEam/qV6p31gadA=";
meta = {
description = "TUI for managing GarandsOS' hosts enabled modules";
homepage = "https://gitea.garandplg.com/GarandPLG/garandos-tui";
license = lib.licenses.mit;
maintainers = [
"Garand_PLG"
];
};
}