2017-06-02 16:40:19 +01:00
|
|
|
{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase, qmake }:
|
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}";
|
2018-03-22 14:34:08 +00:00
|
|
|
version = "1.15";
|
2015-05-30 00:27:35 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
2018-03-22 14:34:08 +00:00
|
|
|
sha256 = "0cnra7g2mcgzh8ykrj1dpb4khkx676pzdr4ia1bvsp0cli48691w";
|
|
|
|
rev = "VERSION_${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 ];
|
2017-06-02 16:40:19 +01:00
|
|
|
nativeBuildInputs = [ doxygen pkgconfig qmake ];
|
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
|
|
|
|
2017-05-16 15:35:52 +01:00
|
|
|
# Hack to avoid TMPDIR in RPATHs.
|
|
|
|
preFixup = ''rm -rf "$(pwd)" '';
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Qt library for accessing the online accounts database";
|
2017-08-17 23:02:23 +01:00
|
|
|
homepage = https://gitlab.com/accounts-sso;
|
2016-01-24 19:31:44 +00:00
|
|
|
license = licenses.lgpl21;
|
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
|
|
|
}
|