rrdtool: move perl libraries to the expected place

closes #12801
This commit is contained in:
Pascal Wittmann 2016-02-07 17:16:30 +01:00
parent 66c3f7463b
commit 23a9b9b88a

View File

@ -9,8 +9,9 @@ stdenv.mkDerivation rec {
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ]; buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ];
postInstall = '' postInstall = ''
# for munin support # for munin and rrdtool support
mv $out/lib/perl/5*/*/*.pm $out/lib/perl/5*/ mkdir -p $out/lib/perl5/site_perl/
mv $out/lib/perl/5* $out/lib/perl5/site_perl/
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {