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, intltool, gtkmm, libglade }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libglademm-2.6.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libglademm/2.6/${name}.tar.bz2";
|
|
sha256 = "1hrbg9l5qb7w0xvr7013qamkckyj0fqc426c851l69zpmhakqm1q";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig intltool ];
|
|
|
|
propagatedBuildInputs = [ gtkmm libglade ];
|
|
}
|