summary refs log tree commit diff
path: root/pkgs/development/libraries/accounts-qt
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-09-27 10:22:39 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-09-27 15:09:17 -0500
commitdfbcab342a7c320c1f204d7309be4b474c9f5a17 (patch)
treea91ffab8c414a3d7b596f48ecc76b61251829e06 /pkgs/development/libraries/accounts-qt
parent4a3d7eae7ee878db12b982b9aa7ac2e1f3dcf72d (diff)
downloadnixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.tar
nixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.tar.gz
nixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.tar.bz2
nixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.tar.lz
nixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.tar.xz
nixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.tar.zst
nixpkgs-dfbcab342a7c320c1f204d7309be4b474c9f5a17.zip
accounts-qt: build with Qt 5.5
Diffstat (limited to 'pkgs/development/libraries/accounts-qt')
-rw-r--r--pkgs/development/libraries/accounts-qt/default.nix4
-rw-r--r--pkgs/development/libraries/accounts-qt/old.nix27
2 files changed, 29 insertions, 2 deletions
diff --git a/pkgs/development/libraries/accounts-qt/default.nix b/pkgs/development/libraries/accounts-qt/default.nix
index 26a04362090..315aab074e5 100644
--- a/pkgs/development/libraries/accounts-qt/default.nix
+++ b/pkgs/development/libraries/accounts-qt/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qt5 }:
+{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qtbase }:
 
 let version = "1.13"; in
 stdenv.mkDerivation {
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
     maintainers = with maintainers; [ nckx ];
   };
 
-  buildInputs = [ glib libaccounts-glib qt5.base ];
+  buildInputs = [ glib libaccounts-glib qtbase ];
   nativeBuildInputs = [ doxygen pkgconfig ];
 
   configurePhase = ''
diff --git a/pkgs/development/libraries/accounts-qt/old.nix b/pkgs/development/libraries/accounts-qt/old.nix
new file mode 100644
index 00000000000..26a04362090
--- /dev/null
+++ b/pkgs/development/libraries/accounts-qt/old.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitLab, doxygen, glib, libaccounts-glib, pkgconfig, qt5 }:
+
+let version = "1.13"; in
+stdenv.mkDerivation {
+  name = "accounts-qt-${version}";
+
+  src = fetchFromGitLab {
+    sha256 = "1gpkgw05dwsf2wk5cy3skgss3kw6mqh7iv3fadrxqxfc1za1xmyl";
+    rev = version;
+    repo = "libaccounts-qt";
+    owner = "accounts-sso";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Qt library for accessing the online accounts database";
+    homepage = "http://code.google.com/p/accounts-sso/";
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ nckx ];
+  };
+
+  buildInputs = [ glib libaccounts-glib qt5.base ];
+  nativeBuildInputs = [ doxygen pkgconfig ];
+
+  configurePhase = ''
+    qmake PREFIX=$out LIBDIR=$out/lib CMAKE_CONFIG_PATH=$out/lib/cmake
+  '';
+}