From 764a523cf9fe3c3e2c856788139aceb5fc99c021 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 21 Oct 2015 15:12:58 +0200 Subject: [PATCH] Drop unnecessary __impureHostDeps is a builtin derivation so it shouldn't need any host dependencies. --- pkgs/stdenv/pure-darwin/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index c043da8a8a79..e4bae33ce55e 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -18,13 +18,11 @@ let "/usr/lib/system" ]; - fetch = { file, sha256 }: derivation ((import { + fetch = { file, sha256 }: import { url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; inherit sha256 system; executable = true; - }).drvAttrs // { - __impureHostDeps = libSystemClosure; - }); + }; bootstrapFiles = { sh = fetch { file = "sh"; sha256 = "1qakpg37vl61jnkplz13m3g1csqr85cg8ybp6jwiv6apmg26isnm"; };