Skip to content

Commit 9683107

Browse files
outfieldr: init at 1.1.0 (#407214)
2 parents 67f508e + 7a5844a commit 9683107

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
lib,
3+
fetchFromGitLab,
4+
stdenv,
5+
zig_0_14,
6+
}:
7+
8+
let
9+
zig = zig_0_14;
10+
in
11+
stdenv.mkDerivation (finalAttrs: {
12+
pname = "outfieldr";
13+
version = "1.1.0";
14+
15+
src = fetchFromGitLab {
16+
owner = "ve-nt";
17+
repo = "outfieldr";
18+
rev = finalAttrs.version;
19+
hash = "sha256-Xz5BxwPWrZfDsWnvVR9KvHidbUdPsxy7b2ONiSZY+uk=";
20+
};
21+
22+
nativeBuildInputs = [
23+
zig.hook
24+
];
25+
26+
meta = {
27+
description = "TLDR client written in Zig";
28+
homepage = "https://gitlab.com/ve-nt/outfieldr";
29+
license = lib.licenses.mit;
30+
maintainers = with lib.maintainers; [ hasnep ];
31+
mainProgram = "tldr";
32+
inherit (zig.meta) platforms;
33+
};
34+
})

0 commit comments

Comments
 (0)