about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/gtk/hooks/gtk2-clean-immodules-cache.sh
blob: dde991fd27cd8285737b2f118b39d9d7d2a2a195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# 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
}