qca2: 2.1.1 -> 2.1.3

This commit is contained in:
Michael Raskin 2017-02-19 18:35:22 +01:00
parent 82044248a3
commit febda39df3

View File

@ -1,11 +1,12 @@
{ stdenv, fetchurl, cmake, pkgconfig, qt }:
stdenv.mkDerivation rec {
name = "qca-2.1.1";
name = "qca-${version}";
version = "2.1.3";
src = fetchurl {
url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
url = "http://download.kde.org/stable/qca/${version}/src/qca-${version}.tar.xz";
sha256 = "0lz3n652z208daxypdcxiybl0a9fnn6ida0q7fh5f42269mdhgq0";
};
nativeBuildInputs = [ cmake pkgconfig ];
@ -13,8 +14,6 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
patches = [ ./libressl.patch ];
meta = with stdenv.lib; {
description = "Qt Cryptographic Architecture";
license = "LGPL";