about summary refs log tree commit diff
path: root/pkgs/servers/http/openresty
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-22 11:57:40 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-22 11:57:40 +0200
commitce6b86cc682f0150234a74a644b625e6b6973d83 (patch)
tree6761b51c91c0f5124f7a76d23f1cd5a1dcb37b49 /pkgs/servers/http/openresty
parent7cdb1bb8aa7a0f559958f56fb53e65608d751117 (diff)
Fix various evaluation problems
http://hydra.nixos.org/build/13616685
Diffstat (limited to 'pkgs/servers/http/openresty')
-rw-r--r--pkgs/servers/http/openresty/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/servers/http/openresty/default.nix b/pkgs/servers/http/openresty/default.nix
index e301cc429b9eb..571cd215356c1 100644
--- a/pkgs/servers/http/openresty/default.nix
+++ b/pkgs/servers/http/openresty/default.nix
@@ -1,6 +1,8 @@
 { stdenv, fetchurl, fetchgit, openssl, zlib, pcre, libxml2, libxslt, gd, geoip
 , perl }:
 
+assert stdenv.isLinux;
+
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
@@ -53,7 +55,7 @@ stdenv.mkDerivation rec {
     description = "A fast web application server built on Nginx";
     homepage    = http://openresty.org;
     license     = licenses.bsd2;
-    platforms   = platforms.all;
+    platforms   = platforms.linux;
     maintainers = with maintainers; [ thoughtpolice ];
   };
 }