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

let
  majorVersion = "1.12";
in
stdenv.mkDerivation rec {
  name = "libpeas-${version}";
  version = "${majorVersion}.1";

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

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

  preFixup = ''
  '';

  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 = [ maintainers.lethalman ];
  };
}