about summary refs log tree commit diff
path: root/pkgs/development/compilers/rust
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-13 14:43:11 -0400
committerfigsoda <figsoda@pm.me>2023-08-13 14:44:19 -0400
commit8522d789be48eb151be33f2c5053f425158ec4f2 (patch)
treee701b7728f17bdfa51c68f233f7a1b5fc0361e3a /pkgs/development/compilers/rust
parent35c245690f4180c3af6688e90a029283d9cb05bf (diff)
downloadnixlib-8522d789be48eb151be33f2c5053f425158ec4f2.tar
nixlib-8522d789be48eb151be33f2c5053f425158ec4f2.tar.gz
nixlib-8522d789be48eb151be33f2c5053f425158ec4f2.tar.bz2
nixlib-8522d789be48eb151be33f2c5053f425158ec4f2.tar.lz
nixlib-8522d789be48eb151be33f2c5053f425158ec4f2.tar.xz
nixlib-8522d789be48eb151be33f2c5053f425158ec4f2.tar.zst
nixlib-8522d789be48eb151be33f2c5053f425158ec4f2.zip
cargo-auditable-cargo-wrapper: fix wrapper
Packages were not correctly built with carog-auditable due to the
missing auditable flag
Diffstat (limited to 'pkgs/development/compilers/rust')
-rw-r--r--pkgs/development/compilers/rust/cargo-auditable-cargo-wrapper.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/rust/cargo-auditable-cargo-wrapper.nix b/pkgs/development/compilers/rust/cargo-auditable-cargo-wrapper.nix
index cc4aed0262ff..d415b2431fc3 100644
--- a/pkgs/development/compilers/rust/cargo-auditable-cargo-wrapper.nix
+++ b/pkgs/development/compilers/rust/cargo-auditable-cargo-wrapper.nix
@@ -9,5 +9,6 @@ runCommand "auditable-${cargo.name}" {
   mkdir -p $out/bin
   makeWrapper ${cargo}/bin/cargo $out/bin/cargo \
     --set CARGO_AUDITABLE_IGNORE_UNSUPPORTED 1 \
-    --prefix PATH : ${lib.makeBinPath [ cargo cargo-auditable ]}
+    --prefix PATH : ${lib.makeBinPath [ cargo cargo-auditable ]} \
+    --add-flags auditable
 ''