Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / accounts-qt / default.nix
blob93f33531b5e86ccc9ad53b6c25f38272a5154cfa
1 { mkDerivation, lib, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkg-config, qmake }:
3 mkDerivation rec {
4   pname = "accounts-qt";
5   version = "1.16";
7   src = fetchFromGitLab {
8     sha256 = "1vmpjvysm0ld8dqnx8msa15hlhrkny02cqycsh4k2azrnijg0xjz";
9     rev = "VERSION_${version}";
10     repo = "libaccounts-qt";
11     owner = "accounts-sso";
12   };
14   propagatedBuildInputs = [ glib libaccounts-glib ];
15   nativeBuildInputs = [ doxygen pkg-config qmake ];
17   # remove forbidden references to $TMPDIR
18   preFixup = ''
19     patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$out"/bin/*
20   '';
22   meta = with lib; {
23     description = "Qt library for accessing the online accounts database";
24     homepage = "https://gitlab.com/accounts-sso";
25     license = licenses.lgpl21;
26     platforms = with platforms; linux;
27   };