Merge pull request #111600 from Luflosi/simplify-binwalk

binwalk: simplify visualizationSupport code
This commit is contained in:
Sandro
2021-02-02 00:44:43 +01:00
committed by GitHub
2 changed files with 4 additions and 8 deletions
+2 -6
View File
@@ -931,14 +931,10 @@ in {
binho-host-adapter = callPackage ../development/python-modules/binho-host-adapter { };
binwalk = callPackage ../development/python-modules/binwalk {
pyqtgraph = null;
matplotlib = null;
};
binwalk = callPackage ../development/python-modules/binwalk { };
binwalk-full = appendToName "full" (self.binwalk.override {
pyqtgraph = self.pyqtgraph;
matplotlib = self.matplotlib;
visualizationSupport = true;
});
biopython = callPackage ../development/python-modules/biopython { };