We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67f508e + 7a5844a commit 9683107Copy full SHA for 9683107
pkgs/by-name/ou/outfieldr/package.nix
@@ -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