From 6e6a41d1d680e96d77650bf1fd985b332d470bf5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 16 Apr 2015 14:04:08 +0200 Subject: apitrace 09519af205 -> 6.1 --- pkgs/applications/graphics/apitrace/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'pkgs') diff --git a/pkgs/applications/graphics/apitrace/default.nix b/pkgs/applications/graphics/apitrace/default.nix index c2f963f001b7..fa16d9584835 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 ]; }; } -- cgit 1.4.1