yx: init at 1.0.0
This commit is contained in:
parent
2c06749d99
commit
5681d9ecbc
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/text/yx/default.nix
Normal file
31
pkgs/tools/text/yx/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue