nixpkgs/pkgs/development/tools/vogl/default.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

2017-05-17 19:26:11 +00:00
{ mkDerivation, lib, fetchFromGitHub
, cmake, git, pkg-config, wget, zip
2017-05-17 19:26:11 +00:00
, qtbase, qtx11extras
2021-03-14 18:12:53 +00:00
, libdwarf, libjpeg_turbo, libunwind, xz, tinyxml, libX11
2017-03-17 20:03:33 +00:00
, SDL2, SDL2_gfx, SDL2_image, SDL2_ttf
, freeglut, libGLU
2018-01-11 10:38:23 +00:00
, fetchpatch
2017-03-17 20:03:33 +00:00
}:
2017-05-17 19:26:11 +00:00
2019-08-13 21:52:01 +00:00
mkDerivation {
pname = "vogl";
2017-03-17 20:03:33 +00:00
version = "2016-05-13";
src = fetchFromGitHub {
owner = "deepfire";
repo = "vogl";
rev = "cbc5f1853e294b363f16c4e00b3e0c49dbf74559";
sha256 = "17gwd73x3lnqv6ccqs48pzqwbzjhbn41c0x0l5zzirhiirb3yh0n";
};
2018-01-11 10:38:23 +00:00
patches = [
(fetchpatch {
name = "fix-qt59.patch";
url = "https://github.com/ValveSoftware/vogl/commit/be3d85f.patch";
sha256 = "1yh4jd35mds337waqxdw3w22w7ghn05b5jm7fb4iihl39mhq6qyv";
})
];
nativeBuildInputs = [ cmake pkg-config ];
2017-03-17 20:03:33 +00:00
buildInputs = [
git wget zip
qtbase qtx11extras
2021-03-14 18:12:53 +00:00
libdwarf libjpeg_turbo libunwind xz tinyxml libX11
2017-03-17 20:03:33 +00:00
SDL2 SDL2_gfx SDL2_image SDL2_ttf
freeglut libGLU
2017-03-17 20:03:33 +00:00
];
dontUseCmakeBuildDir = true;
preConfigure = ''
cmakeDir=$PWD
mkdir -p vogl/vogl_build/release64 && cd $_
'';
2017-05-17 19:26:11 +00:00
cmakeFlags = [
"-DCMAKE_VERBOSE=On"
"-DBUILD_X64=On"
];
2017-03-17 20:03:33 +00:00
2017-05-17 19:26:11 +00:00
meta = with lib; {
description = "OpenGL capture / playback debugger";
homepage = "https://github.com/ValveSoftware/vogl";
2017-03-17 20:03:33 +00:00
license = licenses.mit;
maintainers = [ maintainers.deepfire ];
platforms = [ "x86_64-linux" "i686-linux" ];
broken = true;
2017-03-17 20:03:33 +00:00
};
}