summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/apps
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-09-17 19:12:04 -0400
committerTor Hedin Brønner <torhedinbronner@gmail.com>2019-09-30 19:39:51 +0200
commita9633e883d18a5bdb668e993b825edda2ac2b13b (patch)
tree8054bfe0927437d35a72f16a3a20cc574ec20efa /pkgs/desktops/gnome-3/apps
parente3bece77a7b51ad85c81589809eb498563cccf92 (diff)
downloadnixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.tar
nixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.tar.gz
nixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.tar.bz2
nixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.tar.lz
nixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.tar.xz
nixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.tar.zst
nixpkgs-a9633e883d18a5bdb668e993b825edda2ac2b13b.zip
gnome3.nautilus-sendto: remove
Upstream doesn't recommended its use/ it's archived [0]

[0]: https://github.com/GNOME/gnome-build-meta/commit/ba9f5e257cd430d01e7c53aaed8e9a26975760e6
Diffstat (limited to 'pkgs/desktops/gnome-3/apps')
-rw-r--r--pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix b/pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix
deleted file mode 100644
index 7ac8b4dfe11..00000000000
--- a/pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv, fetchurl, meson, ninja, glib, pkgconfig, gnome3, appstream-glib, gettext }:
-
-let
-  pname = "nautilus-sendto";
-  version = "3.8.6";
-in stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
-
-
-  src = fetchurl {
-    url = "mirror://gnome/sources/${pname}/3.8/${name}.tar.xz";
-    sha256 = "164d7c6e8bae29c4579bcc67a7bf50d783662b1545b62f3008e7ea3c0410e04d";
-  };
-
-  nativeBuildInputs = [ meson ninja pkgconfig appstream-glib gettext ];
-  buildInputs = [ glib ];
-
-  passthru = {
-    updateScript = gnome3.updateScript {
-      packageName = pname;
-      attrPath = "gnome3.${pname}";
-    };
-  };
-
-  meta = with stdenv.lib; {
-    description = "Integrates Evolution and Pidgin into the Nautilus file manager";
-    maintainers = gnome3.maintainers;
-    license = licenses.gpl2;
-    platforms = platforms.linux;
-  };
-}