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-04-16 14:04:08 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-04-17 00:46:21 +0200
commit6e6a41d1d680e96d77650bf1fd985b332d470bf5 (patch)
treecd011db490cc7963455bf9b7b090e527caca894a /pkgs/applications/graphics/apitrace/default.nix
parent467910413333fc40a67dbc1c98d09bf3e83febf5 (diff)
apitrace 09519af205 -> 6.1
Diffstat (limited to 'pkgs/applications/graphics/apitrace/default.nix')
-rw-r--r--pkgs/applications/graphics/apitrace/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix
index c2f963f001b7a..fa16d9584835e 100644
--- a/pkgs/applications/graphics/apitrace/default.nix
+++ b/pkgs/applications/graphics/apitrace/default.nix
@@ -1,12 +1,14 @@
-{ stdenv, fetchgit, cmake, python, libX11, qt4 }:
+{ stdenv, fetchFromGitHub, cmake, python, libX11, qt4 }:
 
+let version = "6.1"; in
 stdenv.mkDerivation {
-  name = "apitrace-09519af205";
+  name = "apitrace-${version}";
 
-  src = fetchgit {
-    url = git://github.com/apitrace/apitrace.git;
-    rev = "09519af2056879ce0ea59f7085ac4b282c7d01d0";
-    sha256 = "1ka34fhl85k90r7kvp89awlqb6prkbqx0kg1whb3535rnvficxdv";
+  src = fetchFromGitHub {
+    sha256 = "1v38111ljd35v5sahshs3inhk6nsv7rxh4r0ck8k0njkwzlx2yqk";
+    rev = version;
+    repo = "apitrace";
+    owner = "apitrace";
   };
 
   buildInputs = [ cmake python libX11 qt4 ];
@@ -18,7 +20,9 @@ stdenv.mkDerivation {
 
   meta = with stdenv.lib; {
     homepage = https://apitrace.github.io;
-    description = "A set of tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
+    description = "Tools to trace OpenGL, OpenGL ES, Direct3D, and DirectDraw APIs";
+    licenses = with licenses; mit;
     platforms = platforms.linux;
+    maintainers = with maintainers; [ nckx ];
   };
 }