about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/gnome-2/platform/libglade/default.nix
blob: aa7e3b938c8b2222a05b8714ab203eb5c6b1bc68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, 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 = [ pkgconfig ];
  buildInputs = [ gtk2 gettext ]
    ++ stdenv.lib.optional withLibgladeConvert python2;

  NIX_LDFLAGS = "-lgmodule-2.0";

  propagatedBuildInputs = [ libxml2 ];
}