nixpkgs/pkgs/development/libraries/gtk/setup-hook.sh
2019-09-06 02:54:53 +02:00

11 lines
286 B
Bash

fixupOutputHooks+=(_gtk2CleanComments)
# Clean comments that link to generator of the file
_gtk2CleanComments() {
local f="$prefix/lib/gtk-2.0/2.10.0/immodules.cache"
if [ -f "$f" ]; then
sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f"
fi
}