summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/radare2
diff options
context:
space:
mode:
authorPamplemousse <xav.maso@gmail.com>2020-10-20 08:58:17 -0700
committerPamplemousse <xav.maso@gmail.com>2020-11-18 17:07:06 -0700
commit056a35ad9796417bf82de7e4eac4094617440478 (patch)
treebc04d4021517227a886a179ac1bae75154714185 /pkgs/development/tools/analysis/radare2
parent8e5f885ba01483f7ac9523e3b6b8f4e0e4afe1c9 (diff)
downloadnixpkgs-056a35ad9796417bf82de7e4eac4094617440478.tar
nixpkgs-056a35ad9796417bf82de7e4eac4094617440478.tar.gz
nixpkgs-056a35ad9796417bf82de7e4eac4094617440478.tar.bz2
nixpkgs-056a35ad9796417bf82de7e4eac4094617440478.tar.lz
nixpkgs-056a35ad9796417bf82de7e4eac4094617440478.tar.xz
nixpkgs-056a35ad9796417bf82de7e4eac4094617440478.tar.zst
nixpkgs-056a35ad9796417bf82de7e4eac4094617440478.zip
radare2-cutter: Use Qt 5.15
Signed-off-by: Pamplemousse <xav.maso@gmail.com>
Diffstat (limited to 'pkgs/development/tools/analysis/radare2')
-rw-r--r--pkgs/development/tools/analysis/radare2/cutter.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/analysis/radare2/cutter.nix b/pkgs/development/tools/analysis/radare2/cutter.nix
index 1cef52a3444..d4c554f8ff6 100644
--- a/pkgs/development/tools/analysis/radare2/cutter.nix
+++ b/pkgs/development/tools/analysis/radare2/cutter.nix
@@ -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;