summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorAnthony Cowley <acowley@gmail.com>2016-05-11 19:30:03 -0400
committerAnthony Cowley <acowley@gmail.com>2016-05-19 11:00:23 -0400
commitdaafa6514cdfa4e9438ae08493609d9c3ec6c176 (patch)
tree7119046501acf4b44a49d9e04d53f07cc76a3ab9 /pkgs/tools/misc
parent33449c54dd68b36f73d6ace90f68ca8f6eaf4d89 (diff)
downloadnixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.tar
nixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.tar.gz
nixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.tar.bz2
nixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.tar.lz
nixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.tar.xz
nixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.tar.zst
nixlib-daafa6514cdfa4e9438ae08493609d9c3ec6c176.zip
rrdtool: darwin compatibility
I needed Tcl-8.5 to build on darwin. Not sure where it comes from on
Linux.
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/rrdtool/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/misc/rrdtool/default.nix b/pkgs/tools/misc/rrdtool/default.nix
index 524e61dfaf37..2db915491049 100644
--- a/pkgs/tools/misc/rrdtool/default.nix
+++ b/pkgs/tools/misc/rrdtool/default.nix
@@ -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 {
   name = "rrdtool-1.5.5";
@@ -6,7 +7,8 @@ stdenv.mkDerivation rec {
     url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
     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 = ''
     # for munin and rrdtool support
@@ -18,7 +20,7 @@ stdenv.mkDerivation rec {
     homepage = http://oss.oetiker.ch/rrdtool/;
     description = "High performance logging in Round Robin Databases";
     license = licenses.gpl2;
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ platforms.darwin;
     maintainers = with maintainers; [ pSub ];
   };
 }