lineselect: 0.1.3 -> 0.1.6
Diff: https://github.com/chfritz/lineselect/compare/v0.1.3...v0.1.6
This commit is contained in:
parent
add33939fe
commit
2d69c0df8f
@ -1,20 +1,32 @@
|
||||
{ lib
|
||||
, buildNpmPackage
|
||||
, fetchFromGitHub
|
||||
, makeBinaryWrapper
|
||||
, nodejs
|
||||
}:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "lineselect";
|
||||
version = "0.1.3";
|
||||
version = "0.1.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chfritz";
|
||||
repo = "lineselect";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-qEAfXBqIuEJ7JPowEJrmo2+xSrLRfhfktAd1Q7NDnAI=";
|
||||
hash = "sha256-dCmLD4Wjsdlta2xsFCMj1zWQr4HWCfcWsKVmrTND4Yw=";
|
||||
};
|
||||
|
||||
npmDepsHash = "sha256-y4J/EuOHVQHDCId6WTcphNY4LxMyNIGkXeEUoHRaYos=";
|
||||
npmDepsHash = "sha256-wBtswfXtJTI7um0HZQk1YygpSggZ4j0/7IBcJiQpOUY=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeBinaryWrapper
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
makeWrapper ${lib.getExe nodejs} $out/bin/lineselect \
|
||||
--set FORCE_COLOR 2 \
|
||||
--add-flags $out/lib/node_modules/lineselect/dist/cli.js
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Shell utility to interactively select lines from stdin";
|
||||
|
Loading…
Reference in New Issue
Block a user