forked from mirrors/nixpkgs
nautilus-sendto: new package
Integrates Evolution and Pidgin into the Nautilus file manager
This commit is contained in:
parent
bf6ddc6285
commit
a013d00448
nixos/modules/services/x11/desktop-managers
pkgs/desktops/gnome-3/3.12
|
@ -152,6 +152,7 @@ in {
|
||||||
gnome3.gnome-music
|
gnome3.gnome-music
|
||||||
gnome3.gnome-tweak-tool
|
gnome3.gnome-tweak-tool
|
||||||
gnome3.gnome-photos
|
gnome3.gnome-photos
|
||||||
|
gnome3.nautilus-sendto
|
||||||
] config.environment.gnome3.excludePackages);
|
] config.environment.gnome3.excludePackages);
|
||||||
|
|
||||||
# Needed for themes and backgrounds
|
# Needed for themes and backgrounds
|
||||||
|
|
22
pkgs/desktops/gnome-3/3.12/apps/nautilus-sendto/default.nix
Normal file
22
pkgs/desktops/gnome-3/3.12/apps/nautilus-sendto/default.nix
Normal file
|
@ -0,0 +1,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 = with maintainers; [ lethalman ];
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -203,6 +203,8 @@ rec {
|
||||||
|
|
||||||
gnome-photos = callPackage ./apps/gnome-photos { };
|
gnome-photos = callPackage ./apps/gnome-photos { };
|
||||||
|
|
||||||
|
nautilus-sendto = callPackage ./apps/nautilus-sendto { };
|
||||||
|
|
||||||
# scrollkeeper replacement
|
# scrollkeeper replacement
|
||||||
rarian = callPackage ./desktop/rarian { };
|
rarian = callPackage ./desktop/rarian { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue