nixpkgs/pkgs/development/libraries/accounts-qt/default.nix
freezeboy 73779ab8d4
accounts-qt: migrate to libsForQt5 derivations to fix cmake config
Co-authored-by: Thomas Tuegel <thomas.tuegel@runtimeverification.com>
2020-12-30 23:20:21 +01:00

27 lines
747 B
Nix

{ 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;
};
}