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

27 lines
847 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-363-ge3509be1";
2014-12-14 15:41:04 +00:00
2015-04-16 13:04:08 +01:00
src = fetchFromGitHub {
sha256 = "1xbz6gwl7kqjm7jjy5gxkdxzrg93vj1a3l19ara7rni6dii0q136";
rev = "e3509be175eda77749abffe051ed0d3eb5d14e72";
2015-04-16 13:04:08 +01:00
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;
};
}