nixpkgs/pkgs/development/libraries/accounts-qt/default.nix

31 lines
860 B
Nix
Raw Normal View History

2017-06-02 15:40:19 +00:00
{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase, qmake }:
2015-05-06 15:32:40 +00:00
stdenv.mkDerivation rec {
pname = "accounts-qt";
version = "1.16";
src = fetchFromGitLab {
sha256 = "1vmpjvysm0ld8dqnx8msa15hlhrkny02cqycsh4k2azrnijg0xjz";
rev = "VERSION_${version}";
repo = "libaccounts-qt";
owner = "accounts-sso";
};
2015-09-27 15:22:39 +00:00
buildInputs = [ glib libaccounts-glib qtbase ];
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ doxygen pkgconfig qmake ];
2015-05-06 15:32:40 +00:00
preConfigure = ''
qmakeFlags="$qmakeFlags LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake"
2015-05-06 15:32:40 +00:00
'';
# Hack to avoid TMPDIR in RPATHs.
preFixup = ''rm -rf "$(pwd)" '';
meta = with stdenv.lib; {
description = "Qt library for accessing the online accounts database";
homepage = "https://gitlab.com/accounts-sso";
license = licenses.lgpl21;
platforms = with platforms; linux;
};
2015-05-06 15:32:40 +00:00
}