mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
61 lines
1.9 KiB
Nix
61 lines
1.9 KiB
Nix
{ stdenv, fetchgit, pkgconfig, libtoxcore-dev, qt5, openal, opencv,
|
|
libsodium, libXScrnSaver, glib, gdk_pixbuf, gtk2, cairo,
|
|
pango, atk, qrencode, ffmpeg, filter-audio, makeWrapper }:
|
|
|
|
let
|
|
revision = "1673b43e26c853f6446f228fec083af166cbf446";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qtox-dev-20150925";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/tux3/qTox.git";
|
|
rev = "${revision}";
|
|
md5 = "785f5b305cdcdf777d93ee823a5b9f49";
|
|
};
|
|
|
|
buildInputs =
|
|
[
|
|
libtoxcore-dev openal opencv libsodium filter-audio
|
|
qt5.base qt5.tools libXScrnSaver glib gtk2 cairo
|
|
pango atk qrencode ffmpeg qt5.translations makeWrapper
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
preConfigure = ''
|
|
# patch .pro file for proper set of the git hash
|
|
sed -i '/git rev-parse/d' qtox.pro
|
|
sed -i 's/$$quote($$GIT_VERSION)/${revision}/' qtox.pro
|
|
# since .pro have hardcoded paths, we need to explicitly set paths here
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags glib-2.0)"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gdk-pixbuf-2.0)"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0)"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags cairo)"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags pango)"
|
|
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags atk)"
|
|
'';
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
qmake
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp qtox $out/bin
|
|
wrapProgram $out/bin/qtox \
|
|
--prefix QT_PLUGIN_PATH : ${qt5.svg}/lib/qt5/plugins
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Qt Tox client";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ viric jgeerds akaWolf ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|