qca2: 2.1.3 -> 2.2.1
This commit is contained in:
parent
933a5c89fd
commit
1357d10048
1 changed files with 5 additions and 5 deletions
|
@ -1,16 +1,16 @@
|
|||
{ stdenv, fetchurl, openssl_1_0_2, cmake, pkgconfig, qt, darwin }:
|
||||
{ stdenv, fetchurl, openssl, cmake, pkgconfig, qt, darwin }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "qca";
|
||||
version = "2.1.3";
|
||||
version = "2.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.kde.org/stable/qca/${version}/src/qca-${version}.tar.xz";
|
||||
sha256 = "0lz3n652z208daxypdcxiybl0a9fnn6ida0q7fh5f42269mdhgq0";
|
||||
url = "http://download.kde.org/stable/qca/${version}/qca-${version}.tar.xz";
|
||||
sha256 = "00kv1vsrc8fp556hm8s6yw3240vx3l4067q6vfxrb3gdwgcd45np";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ openssl_1_0_2 qt ]
|
||||
buildInputs = [ openssl qt ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in a new issue