2018-01-07 14:17:53 +00:00
|
|
|
{ stdenv, fetchurl, meson, ninja, glib, pkgconfig, gnome3, appstream-glib, gettext }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-03-15 12:23:06 +00:00
|
|
|
let
|
|
|
|
pname = "nautilus-sendto";
|
2017-09-17 00:35:19 +01:00
|
|
|
version = "3.8.6";
|
2018-03-15 12:23:06 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-15 12:23:06 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/3.8/${name}.tar.xz";
|
2017-09-17 00:35:19 +01:00
|
|
|
sha256 = "164d7c6e8bae29c4579bcc67a7bf50d783662b1545b62f3008e7ea3c0410e04d";
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
2018-01-07 14:17:53 +00:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig appstream-glib gettext ];
|
2017-09-17 00:35:19 +01:00
|
|
|
buildInputs = [ glib ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-03-15 12:23:06 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Integrates Evolution and Pidgin into the Nautilus file manager";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|