about summary refs log tree commit diff
path: root/pkgs/development/libraries/qca-qt5
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 20:05:19 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:40 -0600
commit36ea03660e2ec6ef8a4b321e97d278bda211cc93 (patch)
tree12018301f90801478f2a1bac497d73563fc507d1 /pkgs/development/libraries/qca-qt5
parentb8b14eda6963aaca56e9e40cd9f58629d0adf520 (diff)
qca-qt5: Qt 5 infrastructure update
Diffstat (limited to 'pkgs/development/libraries/qca-qt5')
-rw-r--r--pkgs/development/libraries/qca-qt5/old.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/development/libraries/qca-qt5/old.nix b/pkgs/development/libraries/qca-qt5/old.nix
deleted file mode 100644
index a3e9e9be64237..0000000000000
--- a/pkgs/development/libraries/qca-qt5/old.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ stdenv, fetchurl, cmake, openssl, pkgconfig, qt5 }:
-
-stdenv.mkDerivation rec {
-  name = "qca-qt5-2.1.1";
-
-  src = fetchurl {
-    url = "http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz";
-    sha256 = "10z9icq28fww4qbzwra8d9z55ywbv74qk68nhiqfrydm21wkxplm";
-  };
-
-  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 = licenses.lgpl21Plus;
-  };
-}