impala: init at 0.1.1

Impala is a TUI for managing wifi through iwd
This commit is contained in:
Nydragon 2024-06-13 20:49:45 +09:00
parent 5db8c2c5e6
commit 5d195c6c2d
No known key found for this signature in database
GPG Key ID: 14AA30A865EA1209

View File

@ -0,0 +1,26 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "impala";
version = "0.1.1";
src = fetchFromGitHub {
owner = "pythops";
repo = "impala";
rev = "v${version}";
hash = "sha256-r/aWzSn/Dci69oS/yopG6Ro34U8hniHVanctyM7RvDw=";
};
cargoHash = "sha256-IV1ftsRyM0CUlQMVmLip1FiqnouT5TsKASpF/KLARqY=";
meta = {
description = "TUI for managing wifi";
homepage = "https://github.com/pythops/impala";
platforms = lib.platforms.linux;
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.nydragon ];
};
}