Merge pull request #252375 from twz123/init-yx

yx: init at 1.0.0
This commit is contained in:
Mario Rodas 2023-08-30 14:06:12 -05:00 committed by GitHub
commit 02a373549e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 0 deletions

View file

@ -17613,6 +17613,15 @@
github = "twitchyliquid64"; github = "twitchyliquid64";
githubId = 6328589; githubId = 6328589;
}; };
twz123 = {
name = "Tom Wieczorek";
email = "tom@bibbu.net";
github = "twz123";
githubId = 1215104;
keys = [{
fingerprint = "B1FD 4E2A 84B2 2379 F4BF 2EF5 FE33 A228 2371 E831";
}];
};
tylerjl = { tylerjl = {
email = "tyler+nixpkgs@langlois.to"; email = "tyler+nixpkgs@langlois.to";
github = "tylerjl"; github = "tylerjl";

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

@ -15083,6 +15083,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security; inherit (darwin.apple_sdk.frameworks) Security;
}; };
yx = callPackage ../tools/text/yx { };
zarchive = callPackage ../tools/archivers/zarchive { }; zarchive = callPackage ../tools/archivers/zarchive { };
zprint = callPackage ../development/tools/zprint { }; zprint = callPackage ../development/tools/zprint { };