lineselect: init at 0.1.3

https://github.com/chfritz/lineselect
This commit is contained in:
figsoda
2023-07-07 11:00:22 -04:00
parent fcadcd9535
commit 91373c0f1c
2 changed files with 27 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "lineselect";
version = "0.1.3";
src = fetchFromGitHub {
owner = "chfritz";
repo = "lineselect";
rev = "v${version}";
hash = "sha256-qEAfXBqIuEJ7JPowEJrmo2+xSrLRfhfktAd1Q7NDnAI=";
};
npmDepsHash = "sha256-y4J/EuOHVQHDCId6WTcphNY4LxMyNIGkXeEUoHRaYos=";
meta = with lib; {
description = "Shell utility to interactively select lines from stdin";
homepage = "https://github.com/chfritz/lineselect";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}
+2
View File
@@ -5537,6 +5537,8 @@ with pkgs;
limitcpu = callPackage ../tools/misc/limitcpu { };
lineselect = callPackage ../tools/misc/lineselect { };
link-grammar = callPackage ../tools/text/link-grammar { };
linuxptp = callPackage ../os-specific/linux/linuxptp { };