nixpkgs/pkgs/desktops/gnome-3/apps/nautilus-sendto/default.nix

32 lines
824 B
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, glib, pkgconfig, gnome3, appstream-glib, gettext }:
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}";
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";
};
nativeBuildInputs = [ meson ninja pkgconfig appstream-glib gettext ];
2017-09-17 00:35:19 +01:00
buildInputs = [ glib ];
2018-03-15 12:23:06 +00:00
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;
};
}