about summary refs log tree commit diff
path: root/pkgs/tools/security/jadx
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-04 19:07:20 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-04 19:48:03 +0100
commit3b445eaceacd3924e1604b48f33e49e2df8dbbff (patch)
treed68afe4ded91f9438cd7b4602370434cd8389f1c /pkgs/tools/security/jadx
parent3b6bc4b69ca7eec695291af31d8878071e0e084d (diff)
treewide: set sourceProvenance for gradle-built packages
these presumably contain binary jars in their deps
Diffstat (limited to 'pkgs/tools/security/jadx')
-rw-r--r--pkgs/tools/security/jadx/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/security/jadx/default.nix b/pkgs/tools/security/jadx/default.nix
index 1358d9f3198ef..654104ada73e7 100644
--- a/pkgs/tools/security/jadx/default.nix
+++ b/pkgs/tools/security/jadx/default.nix
@@ -103,6 +103,10 @@ in stdenv.mkDerivation {
       Command line and GUI tools for produce Java source code from Android Dex
       and Apk files.
     '';
+    sourceProvenance = with sourceTypes; [
+      fromSource
+      binaryBytecode  # deps
+    ];
     license = licenses.asl20;
     platforms = platforms.unix;
     maintainers = with maintainers; [ delroth ];