summary refs log tree commit diff
path: root/pkgs/tools/security/iaito
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2023-02-08 23:50:21 +0300
committerAzat Bahawi <azat@bahawi.net>2023-02-08 23:50:21 +0300
commit0500164fcff779435f75d698f9a7a1fd4e495397 (patch)
tree7a1f08ca5c1334c392ebb9f728348efe1be8a0af /pkgs/tools/security/iaito
parent09d38c4d143ee3c338ce988a8bf1ff5e996809e8 (diff)
iaito: 5.8.0 -> 5.8.2
Diffstat (limited to 'pkgs/tools/security/iaito')
-rw-r--r--pkgs/tools/security/iaito/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/iaito/default.nix b/pkgs/tools/security/iaito/default.nix
index 2047b311222ed..95b126bce0cf5 100644
--- a/pkgs/tools/security/iaito/default.nix
+++ b/pkgs/tools/security/iaito/default.nix
@@ -13,14 +13,14 @@
 
 stdenv.mkDerivation rec {
   pname = "iaito";
-  version = "5.8.0";
+  version = "5.8.2";
 
   srcs = [
     (fetchFromGitHub rec {
       owner = "radareorg";
       repo = "iaito";
       rev = version;
-      hash = "sha256-LqJu30Bp+JgB+y3MDyPVuFmEoXTpfA7K2pxv1ZCABx0=";
+      hash = "sha256-6Do06u9axqH+DpGASEce8j3iGlrkIZGv50seyazOo1w=";
       name = repo;
     })
     (fetchFromGitHub rec {
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
 
   postBuild = ''
     pushd ../../../iaito-translations
-    make build PREFIX=$out
+    make build -j$NIX_BUILD_CORES PREFIX=$out
     popd
   '';
 
@@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
     install -m644 -Dt $out/share/pixmaps ../img/iaito-o.svg
 
     pushd ../../../iaito-translations
-    make install PREFIX=$out -j$NIX_BUILD_CORES
+    make install -j$NIX_BUILD_CORES PREFIX=$out
     popd
 
     runHook postInstall