about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix
blob: 8d40d977a80b9e177b43c83b0203f6ae4a4ee86a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, intltool, gnome3
, glib, gtk3, gobjectIntrospection, python, pygobject3
}:

stdenv.mkDerivation rec {
  inherit (import ./src.nix fetchurl) name src;

  buildInputs =  [
   intltool pkgconfig glib gtk3 gobjectIntrospection python pygobject3
   gnome3.defaultIconTheme
  ];

  meta = with stdenv.lib; {
    description = "A GObject-based plugins engine";
    homepage = "http://ftp.acc.umu.se/pub/GNOME/sources/libpeas/";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = gnome3.maintainers;
  };
}