hred: init at 1.5.0

This commit is contained in:
Jeff Huffman 2023-01-12 04:17:23 -05:00
parent 7214e71043
commit 1927efc49b
No known key found for this signature in database
GPG Key ID: 7F1A93286A8960C7
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib, buildNpmPackage, fetchFromGitHub, runCommand, hred, jq }:
buildNpmPackage rec {
pname = "hred";
version = "1.5.0";
src = fetchFromGitHub {
owner = "danburzo";
repo = "hred";
rev = "v${version}";
hash = "sha256-rnobJG9Z1lXEeFm+c0f9OsbiTzxeP3+zut5LYpGzWfc=";
};
npmDepsHash = "sha256-POxlGWK0TJMwNWDpiK5+OXLGtAx4lFJO3imoe/h+7Sc=";
dontNpmBuild = true;
passthru.tests = {
simple = runCommand "${pname}-test" {} ''
set -e -o pipefail
echo '<i id="foo">bar</i>' | ${hred}/bin/hred 'i#foo { @id => id, @.textContent => text }' -c | ${jq}/bin/jq -c > $out
[ "$(cat $out)" = '{"id":"foo","text":"bar"}' ]
'';
};
meta = {
description = "A command-line tool to extract data from HTML";
license = lib.licenses.mit;
homepage = "https://github.com/danburzo/hred";
maintainers = with lib.maintainers; [ tejing ];
};
}

View File

@ -1879,6 +1879,8 @@ with pkgs;
gst = callPackage ../applications/version-management/gst { };
hred = callPackage ../development/tools/hred { };
hub = callPackage ../applications/version-management/hub { };
hut = callPackage ../applications/version-management/hut { };