e60fe8673b
gnome28 was a mix of packages from various releases, so do not mention 2.28 in the attribute name. svn path=/nixpkgs/trunk/; revision=29721
15 lines
373 B
Nix
15 lines
373 B
Nix
{stdenv, fetchurl, pkgconfig, gtk, libxml2, python, gettext}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libglade-2.6.4";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libglade/2.6/libglade-2.6.4.tar.bz2;
|
|
sha256 = "1v2x2s04jry4gpabws92i0wq2ghd47yr5n9nhgnkd7c38xv1wdk4";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig gtk python gettext ];
|
|
|
|
propagatedBuildInputs = [ libxml2 ];
|
|
}
|