summary refs log blame commit diff
path: root/pkgs/development/tools/misc/gpuvis/default.nix
blob: 83c04495f8cc75258b3ab6980eb796a11e1fff8c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                         
                       



                         

                                                                   


                              
















                                                                  
{ fetchFromGitHub
, freetype
, gtk3
, lib
, meson
, ninja
, pkg-config
, SDL2
, stdenv
, wrapGAppsHook
}:

stdenv.mkDerivation rec {
  pname = "gpuvis";
  version = "20211204";

  src = fetchFromGitHub {
    owner = "mikesart";
    repo = pname;
    rev = "7f47419470687c7ecbdf086b81f5bafdb05d1bef";
    sha256 = "sha256-29Bv+y0zWzn7QtpsjRV6hr19bCeyVJusPcYiAIEIluk=";
  };

  # patch dlopen path for gtk3
  postPatch = ''
    substituteInPlace src/hook_gtk3.h \
      --replace "libgtk-3.so" "${lib.getLib gtk3}/lib/libgtk-3.so"
  '';

  nativeBuildInputs = [ pkg-config meson ninja wrapGAppsHook ];

  buildInputs = [ SDL2 gtk3 freetype ];

  meta = with lib; {
    description = "GPU Trace Visualizer";
    homepage = "https://github.com/mikesart/gpuvis";
    license = licenses.mit;
    maintainers = with maintainers; [ emantor ];
    platforms = with platforms; linux;
  };
}