summary refs log tree commit diff
path: root/pkgs/development/libraries/accounts-qt
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 17:47:49 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:35 -0600
commitfef302e3e4d918e54bea423c6b42ab91c137ca01 (patch)
tree709075faf9d7dd8e7f6b439d9b83b7d016fffbc8 /pkgs/development/libraries/accounts-qt
parent2a8b6959cccea20806793f88b9fc7c7c230c2dc0 (diff)
downloadnixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.tar
nixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.tar.gz
nixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.tar.bz2
nixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.tar.lz
nixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.tar.xz
nixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.tar.zst
nixpkgs-fef302e3e4d918e54bea423c6b42ab91c137ca01.zip
accounts-qt: Qt infrastructure update
Diffstat (limited to 'pkgs/development/libraries/accounts-qt')
-rw-r--r--pkgs/development/libraries/accounts-qt/old.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/development/libraries/accounts-qt/old.nix b/pkgs/development/libraries/accounts-qt/old.nix
deleted file mode 100644
index 26a04362090..00000000000
--- a/pkgs/development/libraries/accounts-qt/old.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ 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
-  '';
-}