about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/accounts-qt
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/accounts-qt')
-rw-r--r--nixpkgs/pkgs/development/libraries/accounts-qt/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/accounts-qt/default.nix b/nixpkgs/pkgs/development/libraries/accounts-qt/default.nix
new file mode 100644
index 000000000000..4e2e33b852e8
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/accounts-qt/default.nix
@@ -0,0 +1,26 @@
+{ mkDerivation, lib, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qmake }:
+
+mkDerivation rec {
+  pname = "accounts-qt";
+  version = "1.16";
+
+  src = fetchFromGitLab {
+    sha256 = "1vmpjvysm0ld8dqnx8msa15hlhrkny02cqycsh4k2azrnijg0xjz";
+    rev = "VERSION_${version}";
+    repo = "libaccounts-qt";
+    owner = "accounts-sso";
+  };
+
+  propagatedBuildInputs = [ glib libaccounts-glib ];
+  nativeBuildInputs = [ doxygen pkgconfig qmake ];
+
+  # Hack to avoid TMPDIR in RPATHs.
+  preFixup = ''rm -rf "$(pwd)" '';
+
+  meta = with lib; {
+    description = "Qt library for accessing the online accounts database";
+    homepage = "https://gitlab.com/accounts-sso";
+    license = licenses.lgpl21;
+    platforms = with platforms; linux;
+  };
+}