mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
pkgs/nix-directory: use stdenvNoCC.mkDerivation
This commit is contained in:
parent
45fcd2da39
commit
c84961e1c2
1 changed files with 10 additions and 2 deletions
|
|
@ -1,6 +1,14 @@
|
||||||
# Copyright (c) 2019-2024, see AUTHORS. Licensed under MIT License, see LICENSE.
|
# 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
|
let
|
||||||
buildRootDirectory = "root-directory";
|
buildRootDirectory = "root-directory";
|
||||||
|
|
@ -20,7 +28,7 @@ let
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
name = "nix-directory";
|
name = "nix-directory";
|
||||||
|
|
||||||
src = builtins.fetchurl {
|
src = builtins.fetchurl {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue