2015-12-10 12:16:50 +01:00
|
|
|
{ lib, stdenv, fetchurl, perl, curl, bzip2, sqlite, openssl ? null, xz
|
2015-06-12 13:19:35 +02:00
|
|
|
, pkgconfig, boehmgc, perlPackages, libsodium
|
2004-03-31 12:19:01 +02:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
2004-02-16 17:54:01 +01:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
let
|
2010-08-17 17:21:42 +02:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
common = { name, src }: stdenv.mkDerivation rec {
|
|
|
|
inherit name src;
|
2014-12-14 05:29:24 +01:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
2012-05-12 06:20:26 +02:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2006-10-11 17:31:52 +02:00
|
|
|
|
2015-12-10 12:16:50 +01:00
|
|
|
buildInputs = [ curl openssl sqlite xz ]
|
|
|
|
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium;
|
2006-10-11 18:45:55 +02:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
propagatedBuildInputs = [ boehmgc ];
|
2013-01-05 18:57:33 +01:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
# 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.
|
2012-05-12 06:20:26 +02:00
|
|
|
postUnpack =
|
2015-10-03 13:33:13 +02:00
|
|
|
'' export CPATH="${bzip2.dev}/include"
|
|
|
|
export LIBRARY_PATH="${bzip2.out}/lib"
|
2015-07-30 12:01:40 +02:00
|
|
|
export CXXFLAGS="-Wno-error=reserved-user-defined-literal"
|
2012-05-12 06:20:26 +02:00
|
|
|
'';
|
|
|
|
|
2010-08-17 17:21:42 +02:00
|
|
|
configureFlags =
|
|
|
|
''
|
2015-07-30 12:01:40 +02:00
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir} --sysconfdir=/etc
|
2012-12-07 13:45:47 +01:00
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
2010-08-17 17:21:42 +02:00
|
|
|
--disable-init-state
|
2012-05-12 06:20:26 +02:00
|
|
|
--enable-gc
|
2015-07-30 12:01:40 +02:00
|
|
|
'';
|
2012-12-07 13:45:47 +01:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
makeFlags = "profiledir=$(out)/etc/profile.d";
|
|
|
|
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
2012-12-07 13:45:47 +01:00
|
|
|
|
2016-09-12 23:31:21 +02:00
|
|
|
doInstallCheck = true;
|
2009-11-06 00:47:53 +01:00
|
|
|
|
2015-10-30 15:16:48 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2015-09-17 15:24:32 +02:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
crossAttrs = {
|
|
|
|
postUnpack =
|
|
|
|
'' export CPATH="${bzip2.crossDrv}/include"
|
|
|
|
export NIX_CROSS_LDFLAGS="-L${bzip2.crossDrv}/lib -rpath-link ${bzip2.crossDrv}/lib $NIX_CROSS_LDFLAGS"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir}
|
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
|
|
|
--disable-init-state
|
|
|
|
--enable-gc
|
|
|
|
'' + stdenv.lib.optionalString (
|
|
|
|
stdenv.cross ? nix && stdenv.cross.nix ? system
|
|
|
|
) ''--with-system=${stdenv.cross.nix.system}'';
|
|
|
|
|
|
|
|
doInstallCheck = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://nixos.org/;
|
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2006-10-11 18:45:55 +02:00
|
|
|
};
|
2009-11-06 00:47:53 +01:00
|
|
|
|
2015-07-30 12:01:40 +02:00
|
|
|
in rec {
|
|
|
|
|
2016-02-12 16:10:18 +01:00
|
|
|
nix = nixStable;
|
|
|
|
|
|
|
|
nixStable = common rec {
|
2016-09-06 16:15:22 +02:00
|
|
|
name = "nix-1.11.4";
|
2016-02-12 16:10:18 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
|
2016-09-06 16:15:22 +02:00
|
|
|
sha256 = "937779ed2efaa3dec210250635401980acb99a6fea6d7374fbaea78231b36d34";
|
2016-02-12 16:10:18 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nixUnstable = lib.lowPrio (common rec {
|
2016-03-27 21:22:16 +02:00
|
|
|
name = "nix-1.12pre4523_3b81b26";
|
2016-02-12 16:10:18 +01:00
|
|
|
src = fetchurl {
|
2016-03-27 21:22:16 +02:00
|
|
|
url = "http://hydra.nixos.org/build/33598573/download/4/${name}.tar.xz";
|
|
|
|
sha256 = "0469zv09m85824w4vqj2ag0nciq51xvrvsys7bd5v4nrxihk9991";
|
2016-02-12 16:10:18 +01:00
|
|
|
};
|
|
|
|
});
|
2015-07-30 12:01:40 +02:00
|
|
|
|
2004-02-16 16:40:55 +01:00
|
|
|
}
|