3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix

25 lines
714 B
Nix
Raw Normal View History

2018-01-06 22:37:31 +00:00
{ stdenv, fetchurl, meson, ninja, glib, pkgconfig, gnome3, appstream-glib
, gettext, gobjectIntrospection
}:
stdenv.mkDerivation rec {
name = "nautilus-sendto-${version}";
2017-09-17 00:35:19 +01:00
version = "3.8.6";
src = fetchurl {
url = "mirror://gnome/sources/nautilus-sendto/3.8/${name}.tar.xz";
2017-09-17 00:35:19 +01:00
sha256 = "164d7c6e8bae29c4579bcc67a7bf50d783662b1545b62f3008e7ea3c0410e04d";
};
2018-01-06 22:37:31 +00:00
nativeBuildInputs = [ meson ninja pkgconfig appstream-glib gettext gobjectIntrospection ];
2017-09-17 00:35:19 +01:00
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;
};
}