forked from mirrors/nixpkgs
apitrace: New expression
This commit is contained in:
parent
1a0a161920
commit
6221af50c4
24
pkgs/applications/graphics/apitrace/default.nix
Normal file
24
pkgs/applications/graphics/apitrace/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchgit, cmake, python, libX11, qt4 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "apitrace-09519af205";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://github.com/apitrace/apitrace.git;
|
||||
rev = "09519af2056879ce0ea59f7085ac4b282c7d01d0";
|
||||
sha256 = "1ka34fhl85k90r7kvp89awlqb6prkbqx0kg1whb3535rnvficxdv";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake python libX11 qt4 ];
|
||||
|
||||
buildPhase = ''
|
||||
cmake
|
||||
make
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://apitrace.github.io;
|
||||
description = "A set of tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -499,6 +499,8 @@ let
|
|||
jre = jdk;
|
||||
};
|
||||
|
||||
apitrace = callPackage ../applications/graphics/apitrace {};
|
||||
|
||||
argyllcms = callPackage ../tools/graphics/argyllcms {};
|
||||
|
||||
arp-scan = callPackage ../tools/misc/arp-scan { };
|
||||
|
|
Loading…
Reference in a new issue