yx: init at 1.0.0

This commit is contained in:
Tom Wieczorek 2023-08-30 18:19:55 +02:00
parent 2c06749d99
commit 5681d9ecbc
No known key found for this signature in database
GPG key ID: FE33A2282371E831
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ 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;
};
}

View file

@ -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 { };