outfieldr: init at 1.1.0

This commit is contained in:
Hannes
2025-05-15 08:40:54 +08:00
parent 1ad465914e
commit 7a5844a902

View File

@@ -0,0 +1,34 @@
{
lib,
fetchFromGitLab,
stdenv,
zig_0_14,
}:
let
zig = zig_0_14;
in
stdenv.mkDerivation (finalAttrs: {
pname = "outfieldr";
version = "1.1.0";
src = fetchFromGitLab {
owner = "ve-nt";
repo = "outfieldr";
rev = finalAttrs.version;
hash = "sha256-Xz5BxwPWrZfDsWnvVR9KvHidbUdPsxy7b2ONiSZY+uk=";
};
nativeBuildInputs = [
zig.hook
];
meta = {
description = "TLDR client written in Zig";
homepage = "https://gitlab.com/ve-nt/outfieldr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hasnep ];
mainProgram = "tldr";
inherit (zig.meta) platforms;
};
})