nixpkgs/pkgs/desktops/gnome-2/platform/libglade/default.nix

18 lines
426 B
Nix
Raw Normal View History

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