summary refs log tree commit diff
path: root/pkgs/development/libraries/goocanvas/2.x.nix
blob: 1440d3f6aa04a247e682f1f754aea7058a642c51 (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, gettext, gtk-doc, gobject-introspection, python2, gtk3, cairo, glib }:

let
  version = "2.0.4";
in stdenv.mkDerivation rec {
  pname = "goocanvas";
  inherit version;

  outputs = [ "out" "dev" "devdoc" ];

  src = fetchurl {
    url = "mirror://gnome/sources/goocanvas/2.0/${pname}-${version}.tar.xz";
    sha256 = "141fm7mbqib0011zmkv3g8vxcjwa7hypmq71ahdyhnj2sjvy4a67";
  };

  nativeBuildInputs = [ pkgconfig gettext gtk-doc python2 ];
  buildInputs = [ gtk3 cairo glib gobject-introspection ];

  configureFlags = [
    "--disable-python"
  ];
  PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "$(dev)/share/gir-1.0";
  PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "$(out)/lib/girepository-1.0";

  meta = with stdenv.lib; {
    description = "Canvas widget for GTK based on the the Cairo 2D library";
    homepage = https://wiki.gnome.org/Projects/GooCanvas;
    license = licenses.lgpl2;
    maintainers = with maintainers; [ ];
    platforms = platforms.unix;
  };
}