mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
hred: init at 1.5.0
This commit is contained in:
parent
7214e71043
commit
1927efc49b
32
pkgs/development/tools/hred/default.nix
Normal file
32
pkgs/development/tools/hred/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user