nixpkgs/pkgs/tools/misc/grc/default.nix

41 lines
1 KiB
Nix
Raw Normal View History

2021-03-02 20:20:01 +00:00
{ lib, fetchFromGitHub, buildPythonApplication }:
2013-07-31 04:11:31 +00:00
2021-03-02 20:20:01 +00:00
buildPythonApplication rec {
pname = "grc";
2021-08-08 13:03:21 +00:00
version = "1.13";
format = "other";
2013-07-31 04:11:31 +00:00
src = fetchFromGitHub {
2021-03-02 20:20:01 +00:00
owner = "garabik";
repo = pname;
rev = "v${version}";
2021-08-08 13:03:21 +00:00
sha256 = "1h0h88h484a9796hai0wasi1xmjxxhpyxgixn6fgdyc5h69gv8nl";
2013-07-31 04:11:31 +00:00
};
postPatch = ''
for f in grc grcat; do
substituteInPlace $f \
--replace /usr/local/ $out/
done
'';
2013-07-31 04:11:31 +00:00
installPhase = ''
2017-04-26 14:44:57 +00:00
runHook preInstall
./install.sh "$out" "$out"
install -Dm444 -t $out/share/zsh/vendor-completions _grc
2017-04-26 14:44:57 +00:00
runHook postInstall
2013-07-31 04:11:31 +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 04:11:31 +00: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 04:11:31 +00:00
};
}