Merge pull request #15396 from acowley/rrdtool-darwin
rrdtool: darwin compatibility
This commit is contained in:
commit
cf989b452d
@ -1,4 +1,5 @@
|
|||||||
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff }:
|
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
|
||||||
|
, tcl-8_5 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "rrdtool-1.5.5";
|
name = "rrdtool-1.5.5";
|
||||||
@ -6,7 +7,8 @@ stdenv.mkDerivation rec {
|
|||||||
url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
|
url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
|
||||||
sha256 = "1xm6ikzx8iaa6r7v292k8s7srkzhnifamp1szkimgmh5ki26sa1s";
|
sha256 = "1xm6ikzx8iaa6r7v292k8s7srkzhnifamp1szkimgmh5ki26sa1s";
|
||||||
};
|
};
|
||||||
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ];
|
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin tcl-8_5;
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
# for munin and rrdtool support
|
# for munin and rrdtool support
|
||||||
@ -18,7 +20,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://oss.oetiker.ch/rrdtool/;
|
homepage = http://oss.oetiker.ch/rrdtool/;
|
||||||
description = "High performance logging in Round Robin Databases";
|
description = "High performance logging in Round Robin Databases";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
maintainers = with maintainers; [ pSub ];
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user