Skip to content

Commit

Permalink
grc: 1.10.1 -> 1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Apr 26, 2017
1 parent 9d3c118 commit 4639e68
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pkgs/tools/misc/grc/default.nix
Expand Up @@ -2,18 +2,20 @@

stdenv.mkDerivation rec {
name = "grc-${version}";
version = "1.10.1";
version = "1.11";

src = fetchFromGitHub {
owner = "garabik";
repo = "grc";
rev = "v${version}";
sha256 = "1c2ndnbyznb608h3s99fbcyh4qb1ccipxm15lyszrrks0w2llbah";
sha256 = "0slxkjg8xf5rg5pqgh4g2p1qxr5m9f6ds7zg7vh2xqzkmwqv18kp";
};

buildInputs = with python3Packages; [ wrapPython makeWrapper ];

installPhase = ''
runHook preInstall
./install.sh "$out" "$out"
for f in $out/bin/* ; do
Expand All @@ -25,13 +27,15 @@ stdenv.mkDerivation rec {
wrapProgram $f \
--prefix PATH : $out/bin
done
runHook postInstall
'';

meta = with stdenv.lib; {
description = "Yet another colouriser for beautifying your logfiles or output of commands";
homepage = http://korpus.juls.savba.sk/~garabik/software/grc.html;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 AndersonTorres ];
maintainers = with maintainers; [ lovek323 AndersonTorres peterhoeg ];
platforms = platforms.unix;

longDescription = ''
Expand Down

0 comments on commit 4639e68

Please sign in to comment.