summary refs log tree commit diff
path: root/nixos/modules/services/web-apps/dokuwiki.nix
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-03-06 01:11:00 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-03-06 15:18:05 +0700
commit4f0cdb68d772900ebcdf866f019d085adf64aa26 (patch)
tree5d8e3caa70dbd1208f270787ffd1d824e79aafbc /nixos/modules/services/web-apps/dokuwiki.nix
parenta9fc5a39c5f686ab2e54a48b0c94ecd4c165c00e (diff)
downloadnixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.tar
nixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.tar.gz
nixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.tar.bz2
nixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.tar.lz
nixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.tar.xz
nixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.tar.zst
nixpkgs-4f0cdb68d772900ebcdf866f019d085adf64aa26.zip
treewide: unzip buldInputs to nativeBuildInputs (2)
Diffstat (limited to 'nixos/modules/services/web-apps/dokuwiki.nix')
-rw-r--r--nixos/modules/services/web-apps/dokuwiki.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/dokuwiki.nix b/nixos/modules/services/web-apps/dokuwiki.nix
index 9567223ebc7..c71c354bb25 100644
--- a/nixos/modules/services/web-apps/dokuwiki.nix
+++ b/nixos/modules/services/web-apps/dokuwiki.nix
@@ -193,7 +193,7 @@ let
                 };
                 sourceRoot = ".";
                 # We need unzip to build this package
-                buildInputs = [ pkgs.unzip ];
+                nativeBuildInputs = [ pkgs.unzip ];
                 # Installing simply means copying all files to the output directory
                 installPhase = "mkdir -p $out; cp -R * $out/";
               };
@@ -220,7 +220,7 @@ let
                   sha256 = "4de5ff31d54dd61bbccaf092c9e74c1af3a4c53e07aa59f60457a8f00cfb23a6";
                 };
                 # We need unzip to build this package
-                buildInputs = [ pkgs.unzip ];
+                nativeBuildInputs = [ pkgs.unzip ];
                 # Installing simply means copying all files to the output directory
                 installPhase = "mkdir -p $out; cp -R * $out/";
               };