nixpkgs/pkgs/development/libraries/qca-qt5/default.nix
2015-05-15 05:48:32 -05:00

26 lines
721 B
Nix

{ 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 ];
};
}