1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

gnome-vfs-2.24.4

svn path=/nixpkgs/trunk/; revision=29719
This commit is contained in:
Yury G. Kudryashov 2011-10-08 14:08:39 +00:00
parent c35c6ec9fa
commit 0ba5532d4b
2 changed files with 9 additions and 8 deletions

View file

@ -100,7 +100,7 @@ pkgs.makeOverridable
};
gnome_vfs = import ./platform/gnome-vfs {
inherit (pkgs) stdenv fetchurl pkgconfig libxml2 bzip2 openssl samba dbus_glib fam hal cdparanoia;
inherit (pkgs) stdenv fetchurl_gnome pkgconfig libxml2 bzip2 openssl samba dbus_glib fam hal cdparanoia;
inherit (pkgs.gtkLibs) glib;
inherit intltool GConf gnome_mime_data;
};

View file

@ -1,12 +1,13 @@
{ stdenv, fetchurl, pkgconfig, libxml2, bzip2, openssl, samba, dbus_glib, glib, fam, hal, cdparanoia
, intltool, GConf, gnome_mime_data}:
{ stdenv, fetchurl_gnome, pkgconfig, libxml2, bzip2, openssl, samba, dbus_glib
, glib, fam, hal, cdparanoia, intltool, GConf, gnome_mime_data}:
stdenv.mkDerivation {
name = "gnome-vfs-2.24.1";
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl {
url = mirror://gnome/sources/gnome-vfs/2.24/gnome-vfs-2.24.1.tar.bz2;
sha256 = "1dmyr8nj77717r8dhwkixpar2yp8ld3r683gp222n59v61718ndw";
src = fetchurl_gnome {
project = "gnome-vfs";
major = "2"; minor = "24"; patchlevel = "4";
sha256 = "1ajg8jb8k3snxc7rrgczlh8daxkjidmcv3zr9w809sq4p2sn9pk2";
};
buildInputs =