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

This commit is contained in:
Artturi 2023-10-23 00:42:22 +03:00 committed by GitHub
commit 16e3288b56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
};
}