outfieldr: init at 1.1.0 (#407214)

This commit is contained in:
Yohann Boniface
2025-05-15 12:47:57 +02:00
committed by GitHub
+34
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;
};
})