2016-04-16 20:59:17 +01:00
|
|
|
{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase, qmakeHook }:
|
2015-05-06 16:32:40 +01:00
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-30 00:27:35 +01:00
|
|
|
name = "accounts-qt-${version}";
|
2016-01-24 19:31:44 +00:00
|
|
|
version = "1.13";
|
2015-05-30 00:27:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl";
|
2015-05-31 21:01:52 +01:00
|
|
|
rev = version;
|
2015-05-30 00:27:35 +01:00
|
|
|
repo = "libaccounts-qt";
|
|
|
|
owner = "accounts-sso";
|
|
|
|
};
|
|
|
|
|
2015-09-27 16:22:39 +01:00
|
|
|
buildInputs = [ glib libaccounts-glib qtbase ];
|
2016-04-16 20:59:17 +01:00
|
|
|
nativeBuildInputs = [ doxygen pkgconfig qmakeHook ];
|
2015-05-06 16:32:40 +01:00
|
|
|
|
2016-04-16 20:59:17 +01:00
|
|
|
preConfigure = ''
|
|
|
|
qmakeFlags="$qmakeFlags LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake"
|
2015-05-06 16:32:40 +01:00
|
|
|
'';
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
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 ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; linux;
|
2016-01-24 19:31:44 +00:00
|
|
|
};
|
2015-05-06 16:32:40 +01:00
|
|
|
}
|