summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 17:38:39 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:35 -0600
commit2a8b6959cccea20806793f88b9fc7c7c230c2dc0 (patch)
treeeb85edef9f91d41edc508b95380cba264829854c /pkgs/development/libraries
parent664a64ef132ccd7781d5a16f1d8d551ea077e940 (diff)
downloadnixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.tar
nixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.tar.gz
nixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.tar.bz2
nixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.tar.lz
nixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.tar.xz
nixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.tar.zst
nixpkgs-2a8b6959cccea20806793f88b9fc7c7c230c2dc0.zip
libdbusmenu-qt: Qt 5 infrastructure update
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix b/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix
deleted file mode 100644
index 5f76162453c..00000000000
--- a/pkgs/development/libraries/libdbusmenu-qt/qt-5.4.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ stdenv, fetchbzr, qt5, cmake }:
-
-stdenv.mkDerivation {
-  name = "libdbusmenu-qt-0.9.3+14";
-
-  src = fetchbzr {
-    url = "http://bazaar.launchpad.net/~dbusmenu-team/libdbusmenu-qt/trunk";
-    rev = "ps-jenkins@lists.canonical.com-20140619090718-mppiiax5atpnb8i2";
-    sha256 = "1dbhaljyivbv3wc184zpjfjmn24zb6aj72wgg1gg1xl5f783issd";
-  };
-
-  buildInputs = [ qt5.base ];
-  nativeBuildInputs = [ cmake ];
-
-  cmakeFlags = "-DWITH_DOC=OFF";
-
-  meta = with stdenv.lib; {
-    homepage = "http://launchpad.net/libdbusmenu-qt";
-    description = "Provides a Qt implementation of the DBusMenu spec";
-    maintainers = [ maintainers.ttuegel ];
-    inherit (qt5.base.meta) platforms;
-  };
-}