nixpkgs/pkgs/applications/graphics/apitrace/default.nix

28 lines
842 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, libdwarf, qtbase, qtwebkit }:
2014-12-14 15:41:04 +00:00
stdenv.mkDerivation rec {
2015-04-16 12:04:08 +00:00
name = "apitrace-${version}";
version = "7.1";
2014-12-14 15:41:04 +00:00
2015-04-16 12:04:08 +00:00
src = fetchFromGitHub {
2015-11-25 15:03:59 +00:00
sha256 = "1n2gmsjnpyam7isg7n1ksggyh6y1l8drvx0a93bnvbcskr7jiz9a";
2015-04-16 12:04:08 +00:00
rev = version;
repo = "apitrace";
owner = "apitrace";
2014-12-14 15:41:04 +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.
buildInputs = [ libX11 procps python libdwarf qtbase qtwebkit ];
2014-12-14 15:41:04 +00:00
nativeBuildInputs = [ cmake ];
2014-12-14 15:41:04 +00:00
meta = with stdenv.lib; {
homepage = https://apitrace.github.io;
2015-04-16 12:04:08 +00:00
description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
license = licenses.mit;
2014-12-14 15:41:04 +00:00
platforms = platforms.linux;
2015-04-16 12:04:08 +00:00
maintainers = with maintainers; [ nckx ];
2014-12-14 15:41:04 +00:00
};
}