2015-06-12 12:19:35 +01:00
|
|
|
{ lib, stdenv, fetchurl, perl, curl, bzip2, sqlite, openssl ? null
|
|
|
|
, pkgconfig, boehmgc, perlPackages, libsodium
|
2004-03-31 11:19:01 +01:00
|
|
|
, storeDir ? "/nix/store"
|
|
|
|
, stateDir ? "/nix/var"
|
|
|
|
}:
|
2004-02-16 16:54:01 +00:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
let
|
2010-08-17 16:21:42 +01:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
common = { name, src }: stdenv.mkDerivation rec {
|
|
|
|
inherit name src;
|
2014-12-14 04:29:24 +00:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
outputs = [ "out" "doc" ];
|
2012-05-12 05:20:26 +01:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
nativeBuildInputs = [ perl pkgconfig ];
|
2006-10-11 16:31:52 +01:00
|
|
|
|
2015-08-17 23:09:19 +01:00
|
|
|
buildInputs = [ curl openssl sqlite ] ++
|
|
|
|
lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium;
|
2006-10-11 17:45:55 +01:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
propagatedBuildInputs = [ boehmgc ];
|
2013-01-05 17:57:33 +00:00
|
|
|
|
2015-07-30 11:01:40 +01: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 05:20:26 +01:00
|
|
|
postUnpack =
|
2015-07-30 11:01:40 +01:00
|
|
|
'' export CPATH="${bzip2}/include"
|
|
|
|
export LIBRARY_PATH="${bzip2}/lib"
|
|
|
|
export CXXFLAGS="-Wno-error=reserved-user-defined-literal"
|
2012-05-12 05:20:26 +01:00
|
|
|
'';
|
|
|
|
|
2010-08-17 16:21:42 +01:00
|
|
|
configureFlags =
|
|
|
|
''
|
2015-07-30 11:01:40 +01:00
|
|
|
--with-store-dir=${storeDir} --localstatedir=${stateDir} --sysconfdir=/etc
|
2012-12-07 12:45:47 +00:00
|
|
|
--with-dbi=${perlPackages.DBI}/${perl.libPrefix}
|
|
|
|
--with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix}
|
|
|
|
--with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix}
|
2010-08-17 16:21:42 +01:00
|
|
|
--disable-init-state
|
2012-05-12 05:20:26 +01:00
|
|
|
--enable-gc
|
2015-07-30 11:01:40 +01:00
|
|
|
'';
|
2012-12-07 12:45:47 +00:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
makeFlags = "profiledir=$(out)/etc/profile.d";
|
|
|
|
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
2015-09-17 14:24:32 +01:00
|
|
|
doInstallCheck = false;
|
2015-10-30 14:16:48 +00:00
|
|
|
|
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2015-09-17 14:24:32 +01:00
|
|
|
|
2015-07-30 11:01:40 +01: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;
|
|
|
|
};
|
2010-08-17 16:21:42 +01:00
|
|
|
};
|
2009-11-05 23:47:53 +00:00
|
|
|
|
2015-07-30 11:01:40 +01:00
|
|
|
in rec {
|
|
|
|
|
|
|
|
nix = nixStable;
|
|
|
|
|
|
|
|
nixStable = common rec {
|
2015-09-04 09:40:08 +01:00
|
|
|
name = "nix-1.10";
|
2015-10-08 14:56:57 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://nixos.org/releases/nix/${name}/${name}.tar.xz";
|
|
|
|
sha256 = "5612ca7a549dd1ee20b208123e041aaa95a414a0e8f650ea88c672dc023d10f6";
|
|
|
|
};
|
2015-07-30 11:01:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nixUnstable = lib.lowPrio (common rec {
|
2015-10-30 23:22:32 +00:00
|
|
|
name = "nix-1.11pre4273_71039be";
|
2015-10-08 14:56:57 +01:00
|
|
|
src = fetchurl {
|
2015-10-30 23:22:32 +00:00
|
|
|
url = "http://hydra.nixos.org/build/27061065/download/4/${name}.tar.xz";
|
|
|
|
sha256 = "4a1bc541868c317708fc8b532e22f5ead8d9759eee6a2680719584841cf897af";
|
2015-10-08 14:56:57 +01:00
|
|
|
};
|
2015-07-30 11:01:40 +01:00
|
|
|
});
|
|
|
|
|
2004-02-16 15:40:55 +00:00
|
|
|
}
|