9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{ mkDerivation, lib, fetchFromGitHub
|
|
, cmake, git, pkg-config, wget, zip
|
|
, qtbase, qtx11extras
|
|
, libdwarf, libjpeg_turbo, libunwind, lzma, tinyxml, libX11
|
|
, SDL2, SDL2_gfx, SDL2_image, SDL2_ttf
|
|
, freeglut, libGLU
|
|
, fetchpatch
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "vogl";
|
|
version = "2016-05-13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deepfire";
|
|
repo = "vogl";
|
|
rev = "cbc5f1853e294b363f16c4e00b3e0c49dbf74559";
|
|
sha256 = "17gwd73x3lnqv6ccqs48pzqwbzjhbn41c0x0l5zzirhiirb3yh0n";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "fix-qt59.patch";
|
|
url = "https://github.com/ValveSoftware/vogl/commit/be3d85f.patch";
|
|
sha256 = "1yh4jd35mds337waqxdw3w22w7ghn05b5jm7fb4iihl39mhq6qyv";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [
|
|
git wget zip
|
|
qtbase qtx11extras
|
|
libdwarf libjpeg_turbo libunwind lzma tinyxml libX11
|
|
SDL2 SDL2_gfx SDL2_image SDL2_ttf
|
|
freeglut libGLU
|
|
];
|
|
|
|
dontUseCmakeBuildDir = true;
|
|
preConfigure = ''
|
|
cmakeDir=$PWD
|
|
mkdir -p vogl/vogl_build/release64 && cd $_
|
|
'';
|
|
cmakeFlags = [
|
|
"-DCMAKE_VERBOSE=On"
|
|
"-DBUILD_X64=On"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "OpenGL capture / playback debugger";
|
|
homepage = "https://github.com/ValveSoftware/vogl";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.deepfire ];
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
broken = true;
|
|
};
|
|
}
|