summary refs log tree commit diff
path: root/pkgs/development/libraries/qoauth
diff options
context:
space:
mode:
authorThomas Tuegel <thomas.tuegel@runtimeverification.com>2020-09-07 10:10:27 -0500
committerThomas Tuegel <thomas.tuegel@runtimeverification.com>2020-09-07 10:18:10 -0500
commit210bfccb538e99529e20d9bd8afd0e9a6496a5cb (patch)
treedbea1c15a6a434407045796fd6bdc96e906a1442 /pkgs/development/libraries/qoauth
parent5d01b6cb1789128a1125f74f2b29cb47a10f3ddb (diff)
downloadnixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.tar
nixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.tar.gz
nixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.tar.bz2
nixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.tar.lz
nixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.tar.xz
nixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.tar.zst
nixpkgs-210bfccb538e99529e20d9bd8afd0e9a6496a5cb.zip
qca2-qt5: remove in favor of libsForQt5.qca-qt5
Diffstat (limited to 'pkgs/development/libraries/qoauth')
-rw-r--r--pkgs/development/libraries/qoauth/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/qoauth/default.nix b/pkgs/development/libraries/qoauth/default.nix
index 85682e2c2a2..386019a0067 100644
--- a/pkgs/development/libraries/qoauth/default.nix
+++ b/pkgs/development/libraries/qoauth/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, qca2-qt5 }:
+{ stdenv, fetchurl, qt5, qca-qt5 }:
 
 stdenv.mkDerivation {
   name = "qoauth-2.0.0";
@@ -15,10 +15,10 @@ stdenv.mkDerivation {
         -e '/features.path =/ s|$$\[QMAKE_MKSPECS\]|$$NIX_OUTPUT_DEV/mkspecs|'
   '';
 
-  buildInputs = [ qt5.qtbase qca2-qt5 ];
+  buildInputs = [ qt5.qtbase qca-qt5 ];
   nativeBuildInputs = [ qt5.qmake ];
 
-  NIX_CFLAGS_COMPILE = "-I${qca2-qt5}/include/Qca-qt5/QtCrypto";
+  NIX_CFLAGS_COMPILE = "-I${qca-qt5}/include/Qca-qt5/QtCrypto";
   NIX_LDFLAGS = "-lqca-qt5";
 
   meta = with stdenv.lib; {