2012-05-11 21:20:26 -07:00
|
|
|
{ stdenv, fetchurl, perl, curl, bzip2, sqlite, openssl ? null
|
|
|
|
, pkgconfig, boehmgc, perlPackages
|
2004-03-31 02:19:01 -08:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
2004-02-16 08:54:01 -08:00
|
|
|
|
2009-11-05 15:47:53 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-11 02:50:37 -07:00
|
|
|
name = "nix-1.7";
|
2010-08-17 08:21:42 -07:00
|
|
|
|
2004-02-16 07:40:55 -08:00
|
|
|
src = fetchurl {
|
2012-12-07 04:45:47 -08:00
|
|
|
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
|
2014-04-11 02:50:37 -07:00
|
|
|
sha256 = "349163654f2ae3e1a17fb3da7ed164a4cac153728bbe9a26764e17556d3dcc92";
|
2004-02-16 07:40:55 -08:00
|
|
|
};
|
2009-11-05 15:47:53 -08:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2012-05-11 21:20:26 -07: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-10-11 08:31:52 -07:00
|
|
|
|
2010-02-05 02:41:24 -08:00
|
|
|
configureFlags =
|
|
|
|
''
|
2013-01-05 09:57:33 -08:00
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir} --sysconfdir=/etc
|
2012-12-07 04:45:47 -08:00
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
2010-02-05 02:41:24 -08:00
|
|
|
--disable-init-state
|
2012-05-11 21:20:26 -07:00
|
|
|
--enable-gc
|
2014-08-22 23:51:25 -07:00
|
|
|
CFLAGS=-O3 CXXFLAGS=-O3
|
2010-02-05 02:41:24 -08:00
|
|
|
'';
|
2006-10-11 09:45:55 -07:00
|
|
|
|
2013-01-05 09:57:33 -08:00
|
|
|
makeFlags = "profiledir=$(out)/etc/profile.d";
|
|
|
|
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
2012-05-11 21:20:26 -07:00
|
|
|
doInstallCheck = true;
|
|
|
|
|
2010-08-17 08:21:42 -07:00
|
|
|
crossAttrs = {
|
2012-05-11 21:20:26 -07:00
|
|
|
postUnpack =
|
2012-12-28 10:08:19 -08:00
|
|
|
'' export CPATH="${bzip2.crossDrv}/include"
|
|
|
|
export NIX_CROSS_LDFLAGS="-L${bzip2.crossDrv}/lib -rpath-link ${bzip2.crossDrv}/lib $NIX_CROSS_LDFLAGS"
|
2012-05-11 21:20:26 -07:00
|
|
|
'';
|
|
|
|
|
2010-08-17 08:21:42 -07:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
2012-12-07 04:45:47 -08:00
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
2010-08-17 08:21:42 -07:00
|
|
|
--disable-init-state
|
2012-05-11 21:20:26 -07:00
|
|
|
--enable-gc
|
2010-08-17 08:21:42 -07:00
|
|
|
CFLAGS=-O3 CXXFLAGS=-O3
|
2012-05-11 21:20:26 -07:00
|
|
|
'' + stdenv.lib.optionalString (
|
|
|
|
stdenv.cross ? nix && stdenv.cross.nix ? system
|
|
|
|
) ''--with-system=${stdenv.cross.nix.system}'';
|
2012-12-07 04:45:47 -08:00
|
|
|
|
2012-05-11 21:20:26 -07:00
|
|
|
doInstallCheck = false;
|
2010-08-17 08:21:42 -07:00
|
|
|
};
|
2009-11-05 15:47:53 -08:00
|
|
|
|
2012-05-11 21:20:26 -07:00
|
|
|
enableParallelBuilding = true;
|
2009-11-05 15:47:53 -08:00
|
|
|
|
2006-10-11 09:45:55 -07:00
|
|
|
meta = {
|
2014-08-22 23:51:25 -07:00
|
|
|
# due to builder args bug; see
|
|
|
|
# https://github.com/NixOS/nix/commit/b224ac15201c57b40ea855f5a98b1bd166c1c7f6
|
|
|
|
broken = stdenv.isDarwin;
|
2014-09-24 10:00:35 -07:00
|
|
|
description = "Powerful package manager that makes package management reliable and reproducible";
|
|
|
|
longDescription = ''
|
|
|
|
Nix is a powerful package manager for Linux and other Unix systems that
|
|
|
|
makes package management reliable and reproducible. It provides atomic
|
|
|
|
upgrades and rollbacks, side-by-side installation of multiple versions of
|
|
|
|
a package, multi-user package management and easy setup of build
|
|
|
|
environments.
|
|
|
|
'';
|
2008-06-24 02:39:19 -07:00
|
|
|
homepage = http://nixos.org/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2013-09-17 02:24:41 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2006-10-11 09:45:55 -07:00
|
|
|
};
|
2004-02-16 07:40:55 -08:00
|
|
|
}
|