summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libglade/default.nix
blob: 3eb7b533f09e3b054e8cae0bc477120faed627c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, pkg-config, gtk2, libxml2, python2 ? null, withLibgladeConvert ? false, gettext }:

assert withLibgladeConvert -> python2 != null;

stdenv.mkDerivation {
  name = "libglade-2.6.4";

  src = fetchurl {
    url = "mirror://gnome/sources/libglade/2.6/libglade-2.6.4.tar.bz2";
    sha256 = "1v2x2s04jry4gpabws92i0wq2ghd47yr5n9nhgnkd7c38xv1wdk4";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ gtk2 gettext ]
    ++ lib.optional withLibgladeConvert python2;

  NIX_LDFLAGS = "-lgmodule-2.0";

  propagatedBuildInputs = [ libxml2 ];
}