2016-11-09 10:09:51 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, libX11, procps, python2, libdwarf, qtbase, qtwebkit }:
|
2014-12-14 15:41:04 +00:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-16 13:04:08 +01:00
|
|
|
name = "apitrace-${version}";
|
2019-03-27 03:20:25 +00:00
|
|
|
version = "7.1-572-g${builtins.substring 0 8 src.rev}";
|
2014-12-14 15:41:04 +00:00
|
|
|
|
2015-04-16 13:04:08 +01:00
|
|
|
src = fetchFromGitHub {
|
2019-03-27 03:20:25 +00:00
|
|
|
sha256 = "11bwb0l8cr1bf9bj1s6cbmi77d5fy4qrphj9cgmcd8jpa862anp5";
|
|
|
|
rev = "26966134f15d28f6b4a9a0a560017b3ba36d60bf";
|
2015-04-16 13:04:08 +01:00
|
|
|
repo = "apitrace";
|
|
|
|
owner = "apitrace";
|
2014-12-14 15:41:04 +00:00
|
|
|
};
|
|
|
|
|
2016-02-28 12:46:39 +00:00
|
|
|
# LD_PRELOAD wrappers need to be statically linked to work against all kinds
|
|
|
|
# of games -- so it's fine to use e.g. bundled snappy.
|
2016-11-09 10:09:51 +00:00
|
|
|
buildInputs = [ libX11 procps python2 libdwarf qtbase qtwebkit ];
|
2014-12-14 15:41:04 +00:00
|
|
|
|
2016-02-28 12:46:39 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-12-14 15:41:04 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://apitrace.github.io;
|
2015-04-16 13:04:08 +01:00
|
|
|
description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.mit;
|
2014-12-14 15:41:04 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|