1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/gnome-2/platform/libgnome/default.nix

22 lines
607 B
Nix
Raw Normal View History

2015-04-05 06:22:12 +01:00
{ stdenv, fetchurl, pkgconfig, glib, popt, zlib, libcanberra
, intltool, libbonobo, GConf, gnome_vfs, ORBit2, libtool, libogg
}:
stdenv.mkDerivation rec {
2015-04-05 06:22:12 +01:00
name = "libgnome-${minVer}.1";
minVer = "2.32";
2015-04-05 06:22:12 +01:00
src = fetchurl {
url = "mirror://gnome/sources/libgnome/${minVer}/${name}.tar.bz2";
sha256 = "197pnq8y0knqjhm2fg4j6hbqqm3qfzfnd0irhwxpk1b4hqb3kimj";
};
outputs = [ "out" "dev" ];
2016-04-27 02:05:16 +01:00
patches = [ ./new-glib.patch ];
nativeBuildInputs = [ pkgconfig ];
2014-06-20 17:51:32 +01:00
buildInputs = [ popt zlib intltool GConf gnome_vfs libcanberra libtool ];
propagatedBuildInputs = [ glib libbonobo libogg ];
}