nixpkgs/pkgs/desktops/gnome-2/platform/gnome-vfs/default.nix
Yury G. Kudryashov e60fe8673b gnome: use callPackage, move to gnome-2
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
2011-10-08 16:58:32 +00:00

21 lines
584 B
Nix

{ stdenv, fetchurl_gnome, pkgconfig, libxml2, bzip2, openssl, samba, dbus_glib
, glib, fam, hal, cdparanoia, intltool, GConf, gnome_mime_data}:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl_gnome {
project = "gnome-vfs";
major = "2"; minor = "24"; patchlevel = "4";
sha256 = "1ajg8jb8k3snxc7rrgczlh8daxkjidmcv3zr9w809sq4p2sn9pk2";
};
buildInputs =
[ pkgconfig libxml2 bzip2 openssl samba dbus_glib fam cdparanoia
intltool gnome_mime_data
]
++ (if stdenv.isLinux then [hal] else []);
propagatedBuildInputs = [ GConf glib ];
}