5682b2e9ea
svn path=/nixpkgs/trunk/; revision=18010
25 lines
566 B
Nix
25 lines
566 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, libsigcxx }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "glibmm-2.22.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/glibmm/2.22/${name}.tar.bz2";
|
|
sha256 = "1h5nxhh6xr1m3jn6bawl3vq5i285k3kdpzqa65zxmxydzm5gy1gi";
|
|
};
|
|
|
|
buildInputs = [pkgconfig];
|
|
propagatedBuildInputs = [glib libsigcxx];
|
|
|
|
meta = {
|
|
description = "C++ interface to the GLib library";
|
|
|
|
homepage = http://gtkmm.org/;
|
|
|
|
license = "LGPLv2+";
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|