2011-02-11 13:45:19 +01:00
|
|
|
{ stdenv, fetchurl, perl, curl, bzip2, sqlite, openssl ? null
|
2011-04-15 15:39:44 +02:00
|
|
|
, pkgconfig, boehmgc, perlPackages
|
2006-11-17 13:49:46 +01:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
|
|
|
|
2012-03-01 21:18:33 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-08-12 14:04:46 +02:00
|
|
|
name = "nix-1.6pre3187_3fb7ae0";
|
2010-03-11 11:51:53 +01:00
|
|
|
|
2007-08-14 18:41:41 +02:00
|
|
|
src = fetchurl {
|
2013-08-12 14:04:46 +02:00
|
|
|
url = "http://hydra.nixos.org/build/5663853/download/5/${name}.tar.xz";
|
|
|
|
sha256 = "3cd695b3bb23ea7f9e4779f5b79180319444204b30120ed2cc0f0bf1e070403f";
|
2007-08-14 18:41:41 +02:00
|
|
|
};
|
2007-08-11 12:34:07 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2012-04-01 14:08:44 +02:00
|
|
|
|
|
|
|
buildInputs = [ curl openssl boehmgc sqlite ];
|
|
|
|
|
|
|
|
# Note: bzip2 is not passed as a build input, because the unpack phase
|
|
|
|
# would end up using the wrong bzip2 when cross-compiling.
|
|
|
|
# XXX: The right thing would be to reinstate `--with-bzip2' in Nix.
|
|
|
|
postUnpack =
|
|
|
|
'' export CPATH="${bzip2}/include"
|
|
|
|
export LIBRARY_PATH="${bzip2}/lib"
|
|
|
|
'';
|
2006-11-17 13:49:46 +01:00
|
|
|
|
2010-03-16 13:46:12 +01:00
|
|
|
configureFlags =
|
|
|
|
''
|
2013-01-20 17:25:09 +01:00
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir} --sysconfdir=/etc
|
2012-09-14 18:02:55 +02:00
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
2010-03-16 13:46:12 +01:00
|
|
|
--disable-init-state
|
2010-11-30 19:32:23 +01:00
|
|
|
--enable-gc
|
2010-05-14 10:57:16 +02:00
|
|
|
CFLAGS=-O3 CXXFLAGS=-O3
|
2010-03-16 13:46:12 +01:00
|
|
|
'';
|
2006-11-17 13:49:46 +01:00
|
|
|
|
2013-01-20 17:25:09 +01:00
|
|
|
makeFlags = "profiledir=$(out)/etc/profile.d";
|
|
|
|
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
2012-05-01 23:00:30 +02:00
|
|
|
doInstallCheck = true;
|
|
|
|
|
2010-05-19 17:13:46 +02:00
|
|
|
crossAttrs = {
|
2012-04-01 14:08:44 +02:00
|
|
|
postUnpack =
|
2012-12-28 19:08:19 +01:00
|
|
|
'' export CPATH="${bzip2.crossDrv}/include"
|
|
|
|
export NIX_CROSS_LDFLAGS="-L${bzip2.crossDrv}/lib -rpath-link ${bzip2.crossDrv}/lib $NIX_CROSS_LDFLAGS"
|
2012-04-01 14:08:44 +02:00
|
|
|
'';
|
|
|
|
|
2010-05-19 17:13:46 +02:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
2012-09-14 18:02:55 +02:00
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
2010-05-19 17:13:46 +02:00
|
|
|
--disable-init-state
|
2012-03-30 00:10:24 +02:00
|
|
|
--enable-gc
|
2010-05-19 17:13:46 +02:00
|
|
|
CFLAGS=-O3 CXXFLAGS=-O3
|
2011-11-16 22:04:02 +01:00
|
|
|
'' + stdenv.lib.optionalString (
|
|
|
|
stdenv.cross ? nix && stdenv.cross.nix ? system
|
|
|
|
) ''--with-system=${stdenv.cross.nix.system}'';
|
2012-09-14 18:02:55 +02:00
|
|
|
|
2012-05-01 23:00:30 +02:00
|
|
|
doInstallCheck = false;
|
2010-05-19 17:13:46 +02:00
|
|
|
};
|
|
|
|
|
2011-04-15 15:39:44 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2006-11-17 13:49:46 +01:00
|
|
|
meta = {
|
|
|
|
description = "The Nix Deployment System";
|
2008-06-24 11:39:19 +02:00
|
|
|
homepage = http://nixos.org/;
|
2010-03-11 11:51:53 +01:00
|
|
|
license = "LGPLv2+";
|
2006-11-17 13:49:46 +01:00
|
|
|
};
|
2012-03-01 21:18:33 +01:00
|
|
|
}
|