Unverified Commit 5681d9ec authored by Tom Wieczorek's avatar Tom Wieczorek
Browse files

yx: init at 1.0.0

parent 2c06749d
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitLab, libyaml }:
stdenv.mkDerivation rec {
  pname = "yx";
  version = "1.0.0";

  src = fetchFromGitLab {
    owner = "tomalok";
    repo = pname;
    rev = version;
    sha256 = "sha256-oY61V9xP0DwRooabzi0XtaFsQa2GwYbuvxfERXQtYcA=";
  };

  makeFlags = [
    "PREFIX=${placeholder "out"}"
  ];

  strictDeps = true;

  buildInputs = [ libyaml ];

  doCheck = true;

  meta = with lib; {
    description = "YAML Data Extraction Tool";
    homepage = "https://gitlab.com/tomalok/yx";
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = with maintainers; [ twz123 ];
    mainProgram = pname;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -15078,6 +15078,8 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  yx = callPackage ../tools/text/yx { };
  zarchive = callPackage ../tools/archivers/zarchive { };
  zprint = callPackage ../development/tools/zprint { };