nixpkgs/pkgs/development/libraries/gtk/gtk2-clean-immodules-cache.sh
2019-09-19 01:14:46 +02:00

13 lines
315 B
Bash

# shellcheck shell=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
}