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

30 lines
832 B
Nix
Raw Normal View History

2015-09-27 15:22:39 +00:00
{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase }:
2015-05-06 15:32:40 +00:00
stdenv.mkDerivation rec {
name = "accounts-qt-${version}";
version = "1.13";
src = fetchFromGitLab {
sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl";
rev = version;
repo = "libaccounts-qt";
owner = "accounts-sso";
};
2015-09-27 15:22:39 +00:00
buildInputs = [ glib libaccounts-glib qtbase ];
2015-05-06 15:32:40 +00:00
nativeBuildInputs = [ doxygen pkgconfig ];
configurePhase = ''
runHook preConfigure
qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake
runHook postConfigure
2015-05-06 15:32:40 +00:00
'';
meta = with stdenv.lib; {
description = "Qt library for accessing the online accounts database";
homepage = "http://code.google.com/p/accounts-sso/";
license = licenses.lgpl21;
maintainers = with maintainers; [ nckx ];
};
2015-05-06 15:32:40 +00:00
}