25382a37e3
Commit 0055c6a
introduced a new preConfigure hook that sets the right
qmake path. Unfortunately the mkDerivation attributes of accounts-qt
override the whole configurePhase, so this hook isn't run at all.
This fixes the build of accounts-qt and it now successfully compiles on
my machine.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
29 lines
832 B
Nix
29 lines
832 B
Nix
{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "accounts-qt-${version}";
|
|
version = "1.13";
|
|
|
|
src = fetchFromGitLab {
|
|
sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl";
|
|
rev = version;
|
|
repo = "libaccounts-qt";
|
|
owner = "accounts-sso";
|
|
};
|
|
|
|
buildInputs = [ glib libaccounts-glib qtbase ];
|
|
nativeBuildInputs = [ doxygen pkgconfig ];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake
|
|
runHook postConfigure
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Qt library for accessing the online accounts database";
|
|
homepage = "http://code.google.com/p/accounts-sso/";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
}
|