summary refs log tree commit diff
path: root/pkgs/development/libraries/libunity/default.nix
blob: f9f0b2b6555107649b065799fe3c64cd1fa4f5cd (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool
, glib, vala, dee, gobjectIntrospection, libdbusmenu
, gtk3, intltool, gnome-common, python3, icu }:

stdenv.mkDerivation rec {
  pname = "libunity";
  version = "7.1.4";

  name = "${pname}-${version}";

  outputs = [ "out" "dev" ];

  src = fetchurl {
    url = "https://launchpad.net/ubuntu/+archive/primary/+files/${pname}_${version}+15.10.20151002.orig.tar.gz";
    sha256 = "1sf98qcjkxfibxk03firnc12dm6il8jzaq5763qam8ydg4li4gij";
  };

  nativeBuildInputs = [
    autoconf
    automake
    gnome-common
    gobjectIntrospection
    intltool
    libtool
    pkgconfig
    python3
    vala
  ];

  buildInputs = [
    glib
    gtk3
  ];

  propagatedBuildInputs = [ dee libdbusmenu ];

  preConfigure = "NOCONFIGURE=1 ./autogen.sh";

  configureFlags = [
    "--disable-static"
    "--with-pygi-overrides-dir=$(out)/${python3.sitePackages}/gi/overrides"
  ];

  NIX_LDFLAGS = "-L${icu}/lib";

  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; [ worldofpeace ];
  };
}