summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.24/apps/nautilus-sendto/default.nix
blob: 093900dcb7ab5026b2f5c0aeed2246bd88e5caa9 (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, glib, pkgconfig, gnome3, intltool
, gobjectIntrospection, makeWrapper }:

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

  version = "3.8.1";

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

  buildInputs = [ glib pkgconfig gobjectIntrospection intltool makeWrapper ];

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