summary refs log tree commit diff
path: root/pkgs/development/libraries/signon/old.nix
blob: bf211c3b8a34d5494dec327fb990052b9179f253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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
  '';

}