about summary refs log tree commit diff
path: root/pkgs/applications/graphics/apitrace/default.nix
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-23 00:05:56 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-23 03:12:24 +0200
commitec15244f1ae6a3040077f65f49b360dca58815ce (patch)
tree6c9fb7a703cad9108fa067928c51dcc587e0792f /pkgs/applications/graphics/apitrace/default.nix
parentaebb3ec0f4edcd5f7f51b6c794e7a20da3f9bd3b (diff)
apitrace: 6.1 -> 7.0
- Many bug fixes
- Switch to Qt 5
Diffstat (limited to 'pkgs/applications/graphics/apitrace/default.nix')
-rw-r--r--pkgs/applications/graphics/apitrace/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix
index 8e546652f852a..cd107a6d279d5 100644
--- a/pkgs/applications/graphics/apitrace/default.nix
+++ b/pkgs/applications/graphics/apitrace/default.nix
@@ -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;