apitrace: 6.1 -> 7.0

- Many bug fixes
- Switch to Qt 5
This commit is contained in:
Tobias Geerinckx-Rice 2015-07-23 00:05:56 +02:00
parent aebb3ec0f4
commit ec15244f1a

View File

@ -1,17 +1,17 @@
{ stdenv, fetchFromGitHub, cmake, python, libX11, qt4 }:
{ stdenv, fetchFromGitHub, cmake, libX11, procps, python, qt5 }:
let version = "6.1"; in
let version = "7.0"; in
stdenv.mkDerivation {
name = "apitrace-${version}";
src = fetchFromGitHub {
sha256 = "1v38111ljd35v5sahshs3inhk6nsv7rxh4r0ck8k0njkwzlx2yqk";
sha256 = "0nn3z7i6cd4zkmms6jpp1v2q194gclbs06v0f5hyiwcsqaxzsg5b";
rev = version;
repo = "apitrace";
owner = "apitrace";
};
buildInputs = [ python libX11 qt4 ];
buildInputs = [ libX11 procps python qt5.base ];
nativeBuildInputs = [ cmake ];
buildPhase = ''
@ -20,6 +20,7 @@ stdenv.mkDerivation {
'';
meta = with stdenv.lib; {
inherit version;
homepage = https://apitrace.github.io;
description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
license = licenses.mit;