guix/kde-graph.sh
2021-01-31 16:25:48 +01:00

13 lines
341 B
Bash

#!bash
#
# Copyright © 2016-2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
# License: GPLv3
graph () {
WHICH="$1" ; shift
./pre-inst-env guix package -A | grep -E "$WHICH" | \
head | cut -f 1 | xargs ./pre-inst-env guix graph | dot -Tpdf > kde-graph.pdf
}
#graph '/kde(|-frameworks|-plasma)\.scm'
graph '/kde-frameworks.scm'