This commit is contained in:
2025-11-29 18:07:04 +01:00
commit ceb4a51d3e
8 changed files with 1018 additions and 0 deletions

12
default.nix Normal file
View File

@@ -0,0 +1,12 @@
{
lib,
rustPlatform,
pkg-config,
}:
rustPlatform.buildRustPackage {
name = "garandos-tui";
src = ./.;
# buildInputs = [ ];
nativeBuildInputs = [pkg-config];
cargoHash = lib.fakeHash;
}