Unverified Commit 9683107d authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

outfieldr: init at 1.1.0 (#407214)

parents 67f508e6 7a5844a9
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  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;
  };
})