summary refs log tree commit diff
path: root/pkgs/development/libraries/qca-qt5
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-05-14 19:06:36 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-05-15 05:48:32 -0500
commit111fec1ba7ffc4ebf0c750038feda447c5aa0f3c (patch)
tree96540739d1855b1fef674aee08f3e22d9b042008 /pkgs/development/libraries/qca-qt5
parentb75d164018ac36e2c2d2d41784f146f60ebe7965 (diff)
downloadnixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.tar
nixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.tar.gz
nixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.tar.bz2
nixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.tar.lz
nixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.tar.xz
nixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.tar.zst
nixpkgs-111fec1ba7ffc4ebf0c750038feda447c5aa0f3c.zip
Add qca-qt5
Diffstat (limited to 'pkgs/development/libraries/qca-qt5')
-rw-r--r--pkgs/development/libraries/qca-qt5/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qca-qt5/default.nix b/pkgs/development/libraries/qca-qt5/default.nix
new file mode 100644
index 00000000000..37b0db4ef6c
--- /dev/null
+++ b/pkgs/development/libraries/qca-qt5/default.nix
@@ -0,0 +1,25 @@
+{ 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 ];
+  };
+}