mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
iaito: init at 5.7.0
This commit is contained in:
parent
51a615ff70
commit
a6cf69f4c4
61
pkgs/tools/security/iaito/default.nix
Normal file
61
pkgs/tools/security/iaito/default.nix
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, qtbase
|
||||||
|
, qttools
|
||||||
|
, radare2
|
||||||
|
, wrapQtAppsHook
|
||||||
|
, zip
|
||||||
|
, nix-update-script
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "iaito";
|
||||||
|
version = "5.7.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "radareorg";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
fetchSubmodules = true;
|
||||||
|
sha256 = "sha256-qEJTsS669eEwo2iiuybN72O5oopCaGEkju8+ekjw2zk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config qttools wrapQtAppsHook zip ];
|
||||||
|
buildInputs = [ radare2 qtbase ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace Makefile \
|
||||||
|
--replace "git submodule update --init" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = [ "-I${radare2}/include/libr" "-I${radare2}/include/libr/sdb" ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
install -Dm755 build/iaito $out/bin/iaito
|
||||||
|
install -Dm644 $src/src/org.radare.iaito.appdata.xml $out/share/metainfo/org.radare.iaito.appdata.xml
|
||||||
|
install -Dm644 $src/src/org.radare.iaito.desktop $out/share/applications/org.radare.iaito.desktop
|
||||||
|
install -Dm644 $src/src/img/iaito-o.svg $out/share/pixmaps/iaito-o.svg
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script {
|
||||||
|
attrPath = pname;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Official frontend of radare2";
|
||||||
|
longDescription = ''
|
||||||
|
The official graphical interface for radare2, a libre reverse engineering
|
||||||
|
framework.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/radareorg/iaito";
|
||||||
|
changelog = "https://github.com/radareorg/iaito/releases/tag/${src.rev}";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ azahi ];
|
||||||
|
};
|
||||||
|
}
|
@ -7299,6 +7299,8 @@ with pkgs;
|
|||||||
|
|
||||||
iannix = libsForQt5.callPackage ../applications/audio/iannix { };
|
iannix = libsForQt5.callPackage ../applications/audio/iannix { };
|
||||||
|
|
||||||
|
iaito = libsForQt5.callPackage ../tools/security/iaito { };
|
||||||
|
|
||||||
jamulus = libsForQt5.callPackage ../applications/audio/jamulus { };
|
jamulus = libsForQt5.callPackage ../applications/audio/jamulus { };
|
||||||
|
|
||||||
ibm-sw-tpm2 = callPackage ../tools/security/ibm-sw-tpm2 { };
|
ibm-sw-tpm2 = callPackage ../tools/security/ibm-sw-tpm2 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user