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:
parent
cf30574d4e
commit
0642ef4935
23
pkgs/development/libraries/libdbusmenu-qt/default.nix
Normal file
23
pkgs/development/libraries/libdbusmenu-qt/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue