about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorChristian Kögler <ck3d@gmx.de>2021-01-21 20:16:58 +0100
committerChristian Kögler <ck3d@gmx.de>2021-01-21 20:16:58 +0100
commit23b0a88572577777d6fa4f9e5810da3c6a6e9c50 (patch)
tree1f8d4ef4a1916b0d3cac3f7223853bf04cac11b9 /pkgs/development
parentafa23b8a4be2e536cb6f905833a76f1434dffc65 (diff)
rust-bindgen: Resolve "/usr/bin/env bash" to fix usage in Nix build
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/rust/bindgen/default.nix10
-rwxr-xr-xpkgs/development/tools/rust/bindgen/wrapper.sh2
2 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix
index 0330edb4804be..eef8a5e41fd27 100644
--- a/pkgs/development/tools/rust/bindgen/default.nix
+++ b/pkgs/development/tools/rust/bindgen/default.nix
@@ -1,5 +1,7 @@
-{ lib, stdenv, fetchFromGitHub, rustPlatform, clang, llvmPackages, rustfmt, writeScriptBin,
-  runtimeShell }:
+{ lib, stdenv, fetchFromGitHub, rustPlatform, clang, llvmPackages, rustfmt, writeScriptBin
+, runtimeShell
+, bash
+}:
 
 rustPlatform.buildRustPackage rec {
   pname = "rust-bindgen";
@@ -16,7 +18,9 @@ rustPlatform.buildRustPackage rec {
 
   cargoSha256 = "1dv1ywdy701bnc2jv5jq0hnpal1snlizaj9w6k1wxyrp9szjd48w";
 
-  libclang = llvmPackages.libclang.lib; #for substituteAll
+  #for substituteAll
+  libclang = llvmPackages.libclang.lib;
+  inherit bash;
 
   buildInputs = [ libclang ];
 
diff --git a/pkgs/development/tools/rust/bindgen/wrapper.sh b/pkgs/development/tools/rust/bindgen/wrapper.sh
index 95cd0901cec84..0b3e3cd4c1e03 100755
--- a/pkgs/development/tools/rust/bindgen/wrapper.sh
+++ b/pkgs/development/tools/rust/bindgen/wrapper.sh
@@ -1,4 +1,4 @@
-#!/usr/bin/env bash
+#!@bash@/bin/bash
 sep='--'   # whether to add -- before new options
 cxx=0      # whether cxx was explicitly requested
 lastWasx=0 # whether the last argument passed was -x