about summary refs log tree commit diff
path: root/pkgs/development/libraries/libunity/default.nix
blob: 94e19f97e80cacc46c1f7410f7e9888e3b422705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, vala, python, intltool, pkgconfig
, glib, libgee_0_6, gtk3, dee, libdbusmenu-glib
}:

stdenv.mkDerivation rec {
  name = "libunity-${version}";
  version = "6.12.0";

  src = fetchurl {
    url = "https://launchpad.net/libunity/6.0/${version}/+download/${name}.tar.gz";
    sha256 = "1nadapl3390x98q1wv2yarh60hzi7ck0d1s8zz9xsiq3zz6msbjd";
  };

  buildInputs = [ glib libgee_0_6 gtk3 ];
  propagatedBuildInputs = [ dee libdbusmenu-glib ];
  nativeBuildInputs = [ vala python intltool pkgconfig ];

  enableParallelBuilding = true;

  meta = with stdenv.lib; {
    description = "A library for instrumenting- and integrating with all aspects of the Unity shell";
    homepage = "https://launchpad.net/libunity";
    license = licenses.lgpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ abbradar ];
  };
}