commit
02a373549e
3 changed files with 42 additions and 0 deletions
|
@ -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";
|
||||||
|
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -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 { };
|
||||||
|
|
Loading…
Reference in a new issue