2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitHub, python3Packages }:
|
2013-07-31 06:11:31 +02:00
|
|
|
|
2019-08-07 06:06:17 +02:00
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "grc";
|
2018-04-30 10:11:37 +02:00
|
|
|
version = "1.11.3";
|
2019-08-07 06:06:17 +02:00
|
|
|
format = "other";
|
2013-07-31 06:11:31 +02:00
|
|
|
|
2017-03-01 08:56:54 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "garabik";
|
|
|
|
repo = "grc";
|
|
|
|
rev = "v${version}";
|
2018-04-30 10:11:37 +02:00
|
|
|
sha256 = "0b3wx9zr7l642hizk93ysbdss7rfymn22b2ykj4kpkf1agjkbv35";
|
2013-07-31 06:11:31 +02:00
|
|
|
};
|
|
|
|
|
2019-08-07 06:06:17 +02:00
|
|
|
postPatch = ''
|
|
|
|
for f in grc grcat; do
|
|
|
|
substituteInPlace $f \
|
|
|
|
--replace /usr/local/ $out/
|
|
|
|
done
|
|
|
|
'';
|
2017-03-01 08:56:54 +01:00
|
|
|
|
2013-07-31 06:11:31 +02:00
|
|
|
installPhase = ''
|
2017-04-26 16:44:57 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2017-03-01 08:56:54 +01:00
|
|
|
./install.sh "$out" "$out"
|
2019-08-07 06:06:17 +02:00
|
|
|
install -Dm444 -t $out/share/zsh/vendor-completions _grc
|
2017-04-26 16:44:57 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2013-07-31 06:11:31 +02:00
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "Yet another colouriser for beautifying your logfiles or output of commands";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://korpus.juls.savba.sk/~garabik/software/grc.html";
|
2013-07-31 06:11:31 +02:00
|
|
|
license = licenses.gpl2;
|
2017-04-26 16:44:57 +02:00
|
|
|
maintainers = with maintainers; [ lovek323 AndersonTorres peterhoeg ];
|
2013-07-31 06:11:31 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Generic Colouriser is yet another colouriser (written in Python) for
|
|
|
|
beautifying your logfiles or output of commands.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|