summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.10/core/libpeas/default.nix
blob: 9cf8426104bea17eb387996a48b7de2ae1769f0d (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
{ stdenv, fetchurl, pkgconfig, intltool
, glib, gtk3, gobjectIntrospection, python, pygobject3
}:

stdenv.mkDerivation rec {
  name = "libpeas-${version}";
  version = "1.9.0";

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

  src = fetchurl {
    url = "mirror://gnome/sources/libpeas/1.9/${name}.tar.xz";
    sha256 = "13fzyzv6c0cfdj83z1s16lv8k997wpnzyzr0wfwcfkcmvz64g1q0";
  };

  preFixup = ''
    rm $out/share/icons/hicolor/icon-theme.cache
  '';

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