Fix various evaluation problems

http://hydra.nixos.org/build/13616685
This commit is contained in:
Eelco Dolstra 2014-08-22 11:57:40 +02:00
parent 7cdb1bb8aa
commit ce6b86cc68
8 changed files with 16 additions and 1 deletions

View file

@ -2,6 +2,8 @@
, coreutils, gnugrep, which, git
}:
assert stdenv.isLinux;
let
buildIdea =

View file

@ -1,6 +1,8 @@
{ stdenv, fetchurl, cmake, openssl, libedit, flex, bison, qt4, makeWrapper
, gcc, nettools, iproute, linuxHeaders }:
assert stdenv.isLinux;
# NOTE: use $out/etc/iked.conf as sample configuration and also set: dhcp_file "/etc/iked.dhcp";
# launch with "iked -f /etc/iked.conf"

View file

@ -1,6 +1,8 @@
{ stdenv, fetchurl, gtk, gdk_pixbuf, atk, pango, glib, cairo, freetype
, fontconfig, libxml2, gnome2 }:
assert stdenv.isLinux;
let
libPath = stdenv.lib.makeLibraryPath
[ stdenv.gcc.libc stdenv.gcc.gcc gtk gdk_pixbuf atk pango glib cairo

View file

@ -1,5 +1,7 @@
{ stdenv, fetchurl }:
assert stdenv.isLinux;
let
libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];
in

View file

@ -1,5 +1,7 @@
{ stdenv, requireFile, gmp4, ncurses, zlib, clang_33, makeWrapper }:
assert stdenv.isLinux;
let
name = "cryptol-${version}-${rev}";
version = "1.8.27";

View file

@ -28,6 +28,7 @@
}:
assert stdenv.platform.name == "sheevaplug" -> stdenv.platform.uboot != null;
assert stdenv.isLinux;
let

View file

@ -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 ];
};
}

View file

@ -1,5 +1,7 @@
{ stdenv, fetchurl, p7zip, patchelf }:
assert stdenv.isLinux;
let
bits = if stdenv.system == "x86_64-linux" then "64" else "32";
libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];