1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/graphics/apitrace/default.nix

28 lines
844 B
Nix
Raw Normal View History

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
stdenv.mkDerivation rec {
2015-04-16 13:04:08 +01:00
name = "apitrace-${version}";
version = "7.1";
2014-12-14 15:41:04 +00:00
2015-04-16 13:04:08 +01:00
src = fetchFromGitHub {
2015-11-25 15:03:59 +00:00
sha256 = "1n2gmsjnpyam7isg7n1ksggyh6y1l8drvx0a93bnvbcskr7jiz9a";
2015-04-16 13:04:08 +01: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.
2016-11-09 10:09:51 +00:00
buildInputs = [ libX11 procps python2 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 13:04:08 +01: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 13:04:08 +01:00
maintainers = with maintainers; [ nckx ];
2014-12-14 15:41:04 +00:00
};
}