1{ stdenv, fetchurl, vala_0_23, python, intltool, pkgconfig
2, glib, libgee_0_6, gtk3, dee, libdbusmenu-glib
3}:
4
5stdenv.mkDerivation rec {
6 name = "libunity-${version}";
7 version = "6.12.0";
8
9 src = fetchurl {
10 url = "https://launchpad.net/libunity/6.0/${version}/+download/${name}.tar.gz";
11 sha256 = "1nadapl3390x98q1wv2yarh60hzi7ck0d1s8zz9xsiq3zz6msbjd";
12 };
13
14 buildInputs = [ glib libgee_0_6 gtk3 ];
15 propagatedBuildInputs = [ dee libdbusmenu-glib ];
16 nativeBuildInputs = [ vala_0_23 python intltool pkgconfig ];
17
18 enableParallelBuilding = true;
19
20 meta = with stdenv.lib; {
21 description = "A library for instrumenting- and integrating with all aspects of the Unity shell";
22 homepage = "https://launchpad.net/libunity";
23 license = licenses.lgpl3;
24 platforms = platforms.linux;
25 maintainers = with maintainers; [ abbradar ];
26 };
27}