about summary refs log tree commit diff
path: root/pkgs/tools/admin
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2020-02-24 22:03:00 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2020-03-05 20:41:46 -0500
commit8c3160b6191b94f9e90cf42aab5810ed042bac89 (patch)
tree5033364e6a653752317049378ebba9626599534d /pkgs/tools/admin
parent5198179adc19176cbcee4f7d7f68d0490ecaf5d2 (diff)
downloadnixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.tar
nixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.tar.gz
nixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.tar.bz2
nixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.tar.lz
nixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.tar.xz
nixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.tar.zst
nixlib-8c3160b6191b94f9e90cf42aab5810ed042bac89.zip
bubblewrap: use buildInputs instead of nativeBuildInputs
these are all libraries.
Diffstat (limited to 'pkgs/tools/admin')
-rw-r--r--pkgs/tools/admin/bubblewrap/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/admin/bubblewrap/default.nix b/pkgs/tools/admin/bubblewrap/default.nix
index 8e2ef7c87e1d..311e97060be2 100644
--- a/pkgs/tools/admin/bubblewrap/default.nix
+++ b/pkgs/tools/admin/bubblewrap/default.nix
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "08r0f4c3fjkb4zjrb4kkax1zfcgcgic702vb62sjjw5xfhppvzp5";
   };
 
-  nativeBuildInputs = [ libcap libxslt docbook_xsl ];
+  buildInputs = [ libcap libxslt docbook_xsl ];
 
   meta = with stdenv.lib; {
     description = "Unprivileged sandboxing tool";