Merge pull request #221141 from wineee/gammaray

gammaray: init at 2.11.3
This commit is contained in:
Weijia Wang 2023-03-31 10:07:11 +03:00 committed by GitHub
commit 450a3e8b96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, wrapQtAppsHook
, wayland
, elfutils
, libbfd
}:
stdenv.mkDerivation rec {
pname = "GammaRay";
version = "2.11.3";
src = fetchFromGitHub {
owner = "KDAB";
repo = pname;
rev = "v${version}";
hash = "sha256-ZFLHBPIjkbHlsatwuXdut1C5MpdkVUb9T7TTNhtP764=";
};
nativeBuildInputs = [
cmake
pkg-config
wrapQtAppsHook
];
buildInputs = [
wayland
elfutils
libbfd
];
meta = with lib; {
description = "A software introspection tool for Qt applications developed by KDAB";
homepage = "https://github.com/KDAB/GammaRay";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ rewine ];
};
}

View file

@ -3298,6 +3298,8 @@ with pkgs;
gamecube-tools = callPackage ../development/tools/gamecube-tools { };
gammaray = libsForQt5.callPackage ../development/tools/gammaray { };
gams = callPackage ../tools/misc/gams (config.gams or {});
gem = callPackage ../applications/audio/pd-plugins/gem { };