summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix
blob: 2812e7673b408d0ab43846047ee8656369939154 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, meson, ninja, glib, pkgconfig, gnome3, appstream-glib, gettext }:

stdenv.mkDerivation rec {
  name = "nautilus-sendto-${version}";

  version = "3.8.6";

  src = fetchurl {
    url = "mirror://gnome/sources/nautilus-sendto/3.8/${name}.tar.xz";
    sha256 = "164d7c6e8bae29c4579bcc67a7bf50d783662b1545b62f3008e7ea3c0410e04d";
  };

  nativeBuildInputs = [ meson ninja pkgconfig appstream-glib gettext ];
  buildInputs = [ glib ];

  meta = with stdenv.lib; {
    description = "Integrates Evolution and Pidgin into the Nautilus file manager";
    maintainers = gnome3.maintainers;
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}