libdbusmenu-qt: meta

svn path=/nixpkgs/trunk/; revision=31394
This commit is contained in:
Yury G. Kudryashov 2012-01-07 09:50:53 +00:00
parent d391d56f97
commit a5d1d871d7

View file

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