signon: Qt 5 infrastructure update

This commit is contained in:
Thomas Tuegel
2015-12-19 20:06:31 -06:00
parent 36ea03660e
commit d7dff0057c
2 changed files with 1 additions and 20 deletions

View File

@@ -1,18 +0,0 @@
{ stdenv, fetchurl, doxygen, qt5 }:
stdenv.mkDerivation rec {
name = "signon-${version}";
version = "8.57";
src = fetchurl {
url = "https://gitlab.com/accounts-sso/signond/repository/archive.tar.gz?ref=${version}";
sha256 = "1vqkxhmdjk3217k38l2s3wld8x7f4jrbbh6xbr036cn1r23ncni5";
};
buildInputs = [ qt5.base ];
nativeBuildInputs = [ doxygen ];
configurePhase = ''
qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake/SignOnQt5
'';
}