Skip to content

Commit

Permalink
Merge pull request NixOS#256581 from azahi/grc-absolute-store-paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Artturin authored Oct 22, 2023
2 parents a620718 + 028231c commit 16e3288
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/tools/misc/grc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ buildPythonApplication rec {
substituteInPlace $f \
--replace /usr/local/ $out/
done
# Support for absolute store paths.
substituteInPlace grc.conf \
--replace "^([/\w\.]+\/)" "^([/\w\.\-]+\/)"
'';

nativeBuildInputs = [ installShellFiles ];
Expand All @@ -42,7 +46,7 @@ buildPythonApplication rec {
beautifying your logfiles or output of commands.
'';
license = licenses.gpl2Plus;
maintainers = with maintainers; [ lovek323 AndersonTorres peterhoeg ];
maintainers = with maintainers; [ azahi lovek323 AndersonTorres peterhoeg ];
platforms = platforms.unix;
};
}

0 comments on commit 16e3288

Please sign in to comment.