Fix tarball build

This commit is contained in:
Eelco Dolstra 2014-08-24 18:52:34 +02:00
parent bce42c282a
commit 2d6d43c02c
9 changed files with 19 additions and 0 deletions

View file

@ -37,6 +37,8 @@
, systemd
}:
assert stdenv.isLinux;
let
version = "31.0";
sources = [

View file

@ -37,6 +37,8 @@
, pango
}:
assert stdenv.isLinux;
let
version = "31.0";
sources = [

View file

@ -1,5 +1,7 @@
{ stdenv, lib, fetchurl, bison, glibc, bash, coreutils, makeWrapper, tzdata, iana_etc }:
assert stdenv.gcc.gcc != null;
let
loader386 = "${glibc}/lib/ld-linux.so.2";
loaderAmd64 = "${glibc}/lib/ld-linux-x86-64.so.2";

View file

@ -1,5 +1,7 @@
{stdenv, fetchurl, which, file, perl, curl, python27, makeWrapper}:
assert stdenv.gcc.gcc != null;
/* Rust's build process has a few quirks :
- It requires some patched in llvm that haven't landed upstream, so it

View file

@ -1,5 +1,7 @@
{stdenv, fetchurl, fetchgit, which, file, perl, curl, python27, makeWrapper}:
assert stdenv.gcc.gcc != null;
/* Rust's build process has a few quirks :
- It requires some patched in llvm that haven't landed upstream, so it

View file

@ -7,6 +7,8 @@
with stdenv.lib;
assert stdenv.gcc.gcc != null;
# TODO:
# * Add gio-module-fam
# Problem: cyclic dependency on gamin

View file

@ -1,6 +1,8 @@
{ stdenv, patchelf, zlib, libmad, libpng12, libcaca, mesa, alsaLib, pulseaudio
, xlibs, plowshare }:
assert stdenv.isLinux;
let
inherit (xlibs) libXext libX11;

View file

@ -1,5 +1,7 @@
{ stdenv, fetchurl, makeWrapper }:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
name = "influxdb-${version}";
version = "0.7.0";

View file

@ -1,4 +1,7 @@
{ stdenv, fetchurl, writeText, zlib, rpm, cpio, patchelf, which }:
assert stdenv.isLinux;
let
p = if stdenv.is64bit then {
arch = "x86_64";