1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

Add libdbusmenu-qt

svn path=/nixpkgs/trunk/; revision=22450
This commit is contained in:
Yury G. Kudryashov 2010-07-04 20:55:50 +00:00
parent cf30574d4e
commit 0642ef4935
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchurl, qt4, cmake }:
let
baseName = "libdbusmenu-qt";
v = "0.5.1";
in
stdenv.mkDerivation rec {
name = "${baseName}-${v}";
src = fetchurl {
url = "http://launchpad.net/${baseName}/trunk/${v}/+download/${name}.tar.bz2";
sha256 = "0ipz1f08d2wgg18l12wssv9lhm66xhj31a1dbikg2rzw7c6bvjvk";
};
buildInputs = [ cmake qt4 ];
meta = with stdenv.lib; {
description = "Provides a Qt implementation of the DBusMenu spec";
homepage = http://people.canonical.com/~agateau/dbusmenu/;
maintainers = [ maintainers.urkud ];
inherit (qt4.meta) platforms;
};
}

View file

@ -4003,6 +4003,10 @@ let
libcCross = assert crossSystem != null; libcCrossChooser crossSystem.libc;
libdbusmenu_qt = makeOverridable (import ../development/libraries/libdbusmenu-qt) {
inherit stdenv fetchurl qt4 cmake;
};
libdwg = import ../development/libraries/libdwg {
inherit stdenv fetchurl;
};