aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/tools/misc/gpuvis/default.nix
blob: 5e0f54b2feef2c4134db6c2902762a4265599b39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ fetchFromGitHub
, freetype
, gtk3
, lib
, meson
, ninja
, pkg-config
, SDL2
, stdenv
, wrapGAppsHook
}:

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

  src = fetchFromGitHub {
    owner = "mikesart";
    repo = pname;
    rev = "216f7d810e182a89fd96ab9fad2a5c2b1e425ea9";
    sha256 = "15pj7gy0irlp849a85z68n184jksjri0xhihgh56rs15kq333mwz";
  };

  # patch dlopen path for gtk3
  # python2 is wrongly added in the meson file, upstream PR: https://github.com/mikesart/gpuvis/pull/62
  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;
  };
}