mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
radare2-cutter: Use Qt 5.15
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
This commit is contained in:
parent
8e5f885ba0
commit
056a35ad97
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub
|
||||
{ fetchFromGitHub, lib, mkDerivation
|
||||
# nativeBuildInputs
|
||||
, qmake, pkgconfig
|
||||
# Qt
|
||||
|
@ -8,7 +8,7 @@
|
|||
, python3
|
||||
, wrapQtAppsHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
mkDerivation rec {
|
||||
pname = "radare2-cutter";
|
||||
version = "1.12.0";
|
||||
|
||||
|
@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A Qt and C++ GUI for radare2 reverse engineering framework";
|
||||
homepage = src.meta.homepage;
|
||||
license = licenses.gpl3;
|
||||
|
|
|
@ -11735,7 +11735,7 @@ julia_15 = callPackage ../development/compilers/julia/1.5.nix {
|
|||
lua = lua5;
|
||||
} // (config.radare or {}))) radare2 r2-for-cutter;
|
||||
|
||||
radare2-cutter = libsForQt514.callPackage ../development/tools/analysis/radare2/cutter.nix { };
|
||||
radare2-cutter = libsForQt515.callPackage ../development/tools/analysis/radare2/cutter.nix { };
|
||||
|
||||
ragel = ragelStable;
|
||||
|
||||
|
|
Loading…
Reference in a new issue