lobtui: init at 0.3.1

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer
2025-12-18 09:49:11 +01:00
parent f6e67a8402
commit 42bbbc2e58
+40
View File
@@ -0,0 +1,40 @@
{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
openssl,
}:
rustPlatform.buildRustPackage rec {
pname = "lobtui";
version = "0.3.1";
src = fetchFromGitHub {
owner = "pythops";
repo = "lobtui";
rev = "v${version}";
hash = "sha256-Ig/KdCuQZYSiCydouN29IsIRKh8qngtzcOknTozDRRM=";
};
cargoHash = "sha256-Cj6hf/dizIv2pKbQvyRqqIz5k3AW3cdfpCaIHvk8G9o=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = {
description = "TUI for lobste.rs website";
homepage = "https://github.com/pythops/lobtui";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [
matthiasbeyer
];
mainProgram = "lobtui";
platforms = lib.platforms.linux;
};
}