gnome2.gnome_vfs_monikers: drop

This commit is contained in:
Jan Tojnar 2018-08-08 20:54:31 +02:00
parent d76754fe80
commit 6b2a175c5e
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 0 additions and 13 deletions

View file

@ -55,8 +55,6 @@ let overridden = set // overrides; set = with overridden; {
gnome_vfs = callPackage ./platform/gnome-vfs { };
gnome_vfs_monikers = callPackage ./platform/gnome-vfs-monikers { };
libgnome = callPackage ./platform/libgnome { };
libgnomeui = callPackage ./platform/libgnomeui { };

View file

@ -1,11 +0,0 @@
{stdenv, fetchurl, pkgconfig, glib, intltool, gnome_vfs, libbonobo}:
stdenv.mkDerivation {
name = "gnome-vfs-monikers-2.15.3";
src = fetchurl {
url = mirror://gnome/sources/gnome-vfs-monikers/2.15/gnome-vfs-monikers-2.15.3.tar.bz2;
sha256 = "0gpgk5vwhgqfhrd8pf1314kh7sv3jfqll2xbdbrs5s5sxy3v7b15";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib intltool gnome_vfs libbonobo ];
}