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