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 ];
postInstall = ''
# for munin support
mv $out/lib/perl/5*/*/*.pm $out/lib/perl/5*/
# for munin and rrdtool support
mkdir -p $out/lib/perl5/site_perl/
mv $out/lib/perl/5* $out/lib/perl5/site_perl/
'';
meta = with stdenv.lib; {