Merge pull request #221141 from wineee/gammaray
gammaray: init at 2.11.3
This commit is contained in:
commit
450a3e8b96
2 changed files with 45 additions and 0 deletions
43
pkgs/development/tools/gammaray/default.nix
Normal file
43
pkgs/development/tools/gammaray/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue