From c04bca34016c41d1fcab222e2d61a26a285340c6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Mar 2018 19:11:13 +0100 Subject: Factor out commonality between release.nix and shell.nix --- shell.nix | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix index 09318dfd0..20cf4133b 100644 --- a/shell.nix +++ b/shell.nix @@ -7,28 +7,7 @@ with import ./release-common.nix { inherit pkgs; }; (if useClang then clangStdenv else stdenv).mkDerivation { name = "nix"; - buildInputs = - [ curl bison flex libxml2 libxslt - bzip2 xz brotli - pkgconfig sqlite libsodium boehmgc - docbook5 docbook5_xsl - autoconf-archive - (aws-sdk-cpp.override { - apis = ["s3"]; - customMemoryManagement = false; - }) - autoreconfHook - boost - - # For nix-perl - perl - perlPackages.DBDSQLite - - # Tests - git - mercurial - ] - ++ lib.optional stdenv.isLinux libseccomp; + buildInputs = buildDeps ++ tarballDeps ++ perlDeps; inherit configureFlags; -- cgit v1.2.3