3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-2/platform/libglade/default.nix

20 lines
462 B
Nix
Raw Normal View History

2019-03-03 21:30:31 +00:00
{stdenv, fetchurl, pkgconfig, gtk2, libxml2, python, gettext}:
stdenv.mkDerivation {
name = "libglade-2.6.4";
2016-04-27 02:05:00 +01:00
src = fetchurl {
url = mirror://gnome/sources/libglade/2.6/libglade-2.6.4.tar.bz2;
sha256 = "1v2x2s04jry4gpabws92i0wq2ghd47yr5n9nhgnkd7c38xv1wdk4";
};
2016-04-27 02:05:00 +01:00
outputs = [ "out" "dev" ];
2016-04-27 02:05:00 +01:00
nativeBuildInputs = [ pkgconfig ];
2019-03-03 21:30:31 +00:00
buildInputs = [ gtk2 python gettext ];
NIX_LDFLAGS = "-lgmodule-2.0";
propagatedBuildInputs = [ libxml2 ];
}