about summary refs log tree commit diff
path: root/pkgs/servers/foundationdb
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-31 13:11:26 -0500
committerArtturin <Artturin@artturin.com>2022-04-16 21:46:46 +0300
commit259fa13d53005f073385d280181e6e378da3ed59 (patch)
tree2e2f184998b1b2aa6006618c69d1a137b62e20cb /pkgs/servers/foundationdb
parentbc094aeaeef2b36f995d69a28a9c7a316c313b7b (diff)
treewide: remove nativeBuildInputs that are in stdenv
Diffstat (limited to 'pkgs/servers/foundationdb')
-rw-r--r--pkgs/servers/foundationdb/vsmake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/foundationdb/vsmake.nix b/pkgs/servers/foundationdb/vsmake.nix
index 52807fc062012..178cd135fe2ca 100644
--- a/pkgs/servers/foundationdb/vsmake.nix
+++ b/pkgs/servers/foundationdb/vsmake.nix
@@ -3,7 +3,7 @@
 # (which will eventually become the default version.)
 { gcc6Stdenv, lib, fetchurl, fetchFromGitHub
 
-, which, findutils, m4, gawk
+, which, m4
 , python2, openjdk, mono, libressl
 , ...
 }:
@@ -51,7 +51,7 @@ let
           inherit rev sha256;
         };
 
-        nativeBuildInputs = [ python2 openjdk gawk which m4 findutils mono ];
+        nativeBuildInputs = [ python2 openjdk which m4 mono ];
         buildInputs = [ libressl boost ];
 
         inherit patches;