Skip to content

Commit

Permalink
pkgs/nix-directory: use stdenvNoCC.mkDerivation
Browse files Browse the repository at this point in the history
  • Loading branch information
t184256 committed Jul 7, 2024
1 parent 45fcd2d commit c84961e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pkgs/nix-directory.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Copyright (c) 2019-2024, see AUTHORS. Licensed under MIT License, see LICENSE.

{ config, lib, stdenv, closureInfo, prootTermux, proot, pkgsStatic, system }:
{ config
, lib
, stdenvNoCC
, closureInfo
, prootTermux
, proot
, pkgsStatic
, system
}:

let
buildRootDirectory = "root-directory";
Expand All @@ -20,7 +28,7 @@ let
};
in

stdenv.mkDerivation {
stdenvNoCC.mkDerivation {
name = "nix-directory";

src = builtins.fetchurl {
Expand Down

0 comments on commit c84961e

Please sign in to comment.