Unverified Commit 16e3288b authored by Artturi's avatar Artturi Committed by GitHub
Browse files

Merge pull request #256581 from azahi/grc-absolute-store-paths

parents a6207181 028231c0
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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 ];
@@ -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;
  };
}