summary refs log tree commit diff
path: root/pkgs/games/openarena
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-09-27 16:38:10 -0500
committerWill Dietz <w@wdtz.org>2018-09-28 11:43:16 -0500
commiteb91037e7b5de99d887b4f58287e99abeeea05de (patch)
treef97fbcd1b8392d022890f94a2cf4a8101778e7d4 /pkgs/games/openarena
parent196c405efb957a4c419b5eef5b6639ce95604fc8 (diff)
downloadnixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.tar
nixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.tar.gz
nixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.tar.bz2
nixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.tar.lz
nixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.tar.xz
nixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.tar.zst
nixpkgs-eb91037e7b5de99d887b4f58287e99abeeea05de.zip
tree-wide: patchelf used during build -> nativeBuildInputs
In a few cases it wasn't clear so I left them as-is.

While visiting these moved other things to nativeBuildInputs
when it was clear they were one of these cases:

* makeWrapper
* archive utilities (in order to unpack src)
  * a few of these might no longer be needed but leaving for another day
Diffstat (limited to 'pkgs/games/openarena')
-rw-r--r--pkgs/games/openarena/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/openarena/default.nix b/pkgs/games/openarena/default.nix
index 19e608f393a..d5592e4f740 100644
--- a/pkgs/games/openarena/default.nix
+++ b/pkgs/games/openarena/default.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
     sha256 = "0jmc1cmdz1rcvqc9ilzib1kilpwap6v0d331l6q53wsibdzsz3ss";
   };
 
-  buildInputs = [ pkgs.unzip patchelf makeWrapper];
+  nativeBuildInputs = [ pkgs.unzip patchelf makeWrapper];
 
   installPhase = let
     gameDir = "$out/openarena-$version";