From c94ef8d00b248339f5dfcdda7b9d102a56f06bc7 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 17 May 2020 16:27:36 +0100 Subject: chore(3p/nix): Use packages from depot tree --- third_party/nix/release.nix | 2 +- third_party/nix/shell.nix | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) (limited to 'third_party/nix') diff --git a/third_party/nix/release.nix b/third_party/nix/release.nix index 64aa1a976689..1d8ea4a4f6ea 100644 --- a/third_party/nix/release.nix +++ b/third_party/nix/release.nix @@ -1,5 +1,5 @@ { nix ? builtins.fetchGit ./. -, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz +, nixpkgs ? (import {}).third_party , officialRelease ? false , systems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ] }: diff --git a/third_party/nix/shell.nix b/third_party/nix/shell.nix index e8026f8e40b1..e163fccf9c77 100644 --- a/third_party/nix/shell.nix +++ b/third_party/nix/shell.nix @@ -1,10 +1,9 @@ -{ useClang ? false }: - -with import (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz) {}; +let pkgs = (import {}).third_party; +in with pkgs; with import ./release-common.nix { inherit pkgs; }; -(if useClang then clangStdenv else stdenv).mkDerivation { +clangStdenv.mkDerivation { name = "nix"; buildInputs = buildDeps ++ propagatedDeps ++ tarballDeps ++ perlDeps; -- cgit 1.4.1