2021-01-19 06:50:56 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkg-config, qmake }:
|
2015-05-06 15:32:40 +00:00
|
|
|
|
2020-09-17 21:34:46 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "accounts-qt";
|
2019-10-07 01:28:26 +00:00
|
|
|
version = "1.16";
|
2015-05-29 23:27:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
2019-10-07 01:28:26 +00:00
|
|
|
sha256 = "1vmpjvysm0ld8dqnx8msa15hlhrkny02cqycsh4k2azrnijg0xjz";
|
2018-03-22 14:34:08 +00:00
|
|
|
rev = "VERSION_${version}";
|
2015-05-29 23:27:35 +00:00
|
|
|
repo = "libaccounts-qt";
|
|
|
|
owner = "accounts-sso";
|
|
|
|
};
|
|
|
|
|
2020-09-17 21:34:46 +00:00
|
|
|
propagatedBuildInputs = [ glib libaccounts-glib ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ doxygen pkg-config qmake ];
|
2015-05-06 15:32:40 +00:00
|
|
|
|
2023-08-05 07:23:43 +00:00
|
|
|
# remove forbidden references to $TMPDIR
|
2023-07-31 06:19:02 +00:00
|
|
|
preFixup = ''
|
2023-08-05 07:23:43 +00:00
|
|
|
patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$out"/bin/*
|
2023-07-31 06:19:02 +00:00
|
|
|
'';
|
2017-05-16 14:35:52 +00:00
|
|
|
|
2020-09-17 21:34:46 +00:00
|
|
|
meta = with lib; {
|
2016-01-24 19:31:44 +00:00
|
|
|
description = "Qt library for accessing the online accounts database";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://gitlab.com/accounts-sso";
|
2016-01-24 19:31:44 +00:00
|
|
|
license = licenses.lgpl21;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2016-01-24 19:31:44 +00:00
|
|
|
};
|
2015-05-06 15:32:40 +00:00
|
|
|
}
|