summary refs log tree commit diff
path: root/pkgs/development/libraries/qca-qt5/default.nix
blob: 37b0db4ef6ceb70f91bf6e4298ca51286f241976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchgit, cmake, openssl, pkgconfig, qt5 }:

let
  rev = "088ff642fc2990871e3555e73c94c9287e7514a9";
  shortrev = builtins.substring 0 7 rev;
in
stdenv.mkDerivation rec {
  name = "qca-qt5-20150422-${shortrev}";
  src = fetchgit {
    url = "git://anongit.kde.org/qca.git";
    branchName = "qt5";
    inherit rev;
    sha256 = "fe1c7d5d6f38445a4032548ae3ea22c74d4327dfaf2dc88492a95facbca398f8";
  };

  buildInputs = [ openssl qt5.base ];
  nativeBuildInputs = [ cmake pkgconfig ];

  meta = with stdenv.lib; {
    description = "Qt 5 Cryptographic Architecture";
    homepage = http://delta.affinix.com/qca;
    maintainers = with maintainers; [ ttuegel ];
    license = with licenses; [ lgpl21Plus ];
  };
}