parent
7cdb1bb8aa
commit
ce6b86cc68
@ -2,6 +2,8 @@
|
|||||||
, coreutils, gnugrep, which, git
|
, coreutils, gnugrep, which, git
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
buildIdea =
|
buildIdea =
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
{ stdenv, fetchurl, cmake, openssl, libedit, flex, bison, qt4, makeWrapper
|
{ stdenv, fetchurl, cmake, openssl, libedit, flex, bison, qt4, makeWrapper
|
||||||
, gcc, nettools, iproute, linuxHeaders }:
|
, gcc, nettools, iproute, linuxHeaders }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
# NOTE: use $out/etc/iked.conf as sample configuration and also set: dhcp_file "/etc/iked.dhcp";
|
# NOTE: use $out/etc/iked.conf as sample configuration and also set: dhcp_file "/etc/iked.dhcp";
|
||||||
# launch with "iked -f /etc/iked.conf"
|
# launch with "iked -f /etc/iked.conf"
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
{ stdenv, fetchurl, gtk, gdk_pixbuf, atk, pango, glib, cairo, freetype
|
{ stdenv, fetchurl, gtk, gdk_pixbuf, atk, pango, glib, cairo, freetype
|
||||||
, fontconfig, libxml2, gnome2 }:
|
, fontconfig, libxml2, gnome2 }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
libPath = stdenv.lib.makeLibraryPath
|
libPath = stdenv.lib.makeLibraryPath
|
||||||
[ stdenv.gcc.libc stdenv.gcc.gcc gtk gdk_pixbuf atk pango glib cairo
|
[ stdenv.gcc.libc stdenv.gcc.gcc gtk gdk_pixbuf atk pango glib cairo
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];
|
libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];
|
||||||
in
|
in
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
{ stdenv, requireFile, gmp4, ncurses, zlib, clang_33, makeWrapper }:
|
{ stdenv, requireFile, gmp4, ncurses, zlib, clang_33, makeWrapper }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "cryptol-${version}-${rev}";
|
name = "cryptol-${version}-${rev}";
|
||||||
version = "1.8.27";
|
version = "1.8.27";
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
assert stdenv.platform.name == "sheevaplug" -> stdenv.platform.uboot != null;
|
assert stdenv.platform.name == "sheevaplug" -> stdenv.platform.uboot != null;
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
{ stdenv, fetchurl, fetchgit, openssl, zlib, pcre, libxml2, libxslt, gd, geoip
|
{ stdenv, fetchurl, fetchgit, openssl, zlib, pcre, libxml2, libxslt, gd, geoip
|
||||||
, perl }:
|
, perl }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -53,7 +55,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A fast web application server built on Nginx";
|
description = "A fast web application server built on Nginx";
|
||||||
homepage = http://openresty.org;
|
homepage = http://openresty.org;
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.all;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ thoughtpolice ];
|
maintainers = with maintainers; [ thoughtpolice ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
{ stdenv, fetchurl, p7zip, patchelf }:
|
{ stdenv, fetchurl, p7zip, patchelf }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
bits = if stdenv.system == "x86_64-linux" then "64" else "32";
|
bits = if stdenv.system == "x86_64-linux" then "64" else "32";
|
||||||
libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];
|
libPath = stdenv.lib.makeLibraryPath [ stdenv.gcc.libc ];
|
||||||
|
Loading…
Reference in New Issue
Block a user