mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
vinagre: add new gnome app
This commit is contained in:
parent
de142fe63e
commit
3b2c44fc74
29
pkgs/desktops/gnome-3/3.16/apps/vinagre/default.nix
Normal file
29
pkgs/desktops/gnome-3/3.16/apps/vinagre/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, vte, libxml2, gtk-vnc, intltool
|
||||
, libsecret, itstool, makeWrapper, librsvg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vinagre-${version}";
|
||||
|
||||
majVersion = gnome3.version;
|
||||
version = "${majVersion}.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/vinagre/${majVersion}/${name}.tar.xz";
|
||||
sha256 = "0gs8sqd4r6jlgxn1b7ggyfcisig50z79p0rmigpzwpjjx1bh0z6p";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig gtk3 vte libxml2 gtk-vnc intltool libsecret
|
||||
itstool makeWrapper gnome3.defaultIconTheme librsvg ];
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram "$out/bin/vinagre" \
|
||||
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Apps/Vinagre;
|
||||
description = "Remote desktop viewer for GNOME";
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.lethalman ];
|
||||
};
|
||||
}
|
@ -28,7 +28,7 @@ let
|
||||
gnome-shell-extensions gnome-system-log gnome-system-monitor
|
||||
gnome_terminal gnome-user-docs bijiben evolution file-roller gedit
|
||||
gnome-clocks gnome-music gnome-tweak-tool gnome-photos
|
||||
nautilus-sendto dconf-editor
|
||||
nautilus-sendto dconf-editor vinagre
|
||||
];
|
||||
|
||||
inherit (pkgs) libsoup glib gtk2 webkitgtk24x gtk3 gtkmm3 libcanberra;
|
||||
@ -273,6 +273,8 @@ let
|
||||
|
||||
pomodoro = callPackage ./apps/pomodoro { };
|
||||
|
||||
vinagre = callPackage ./apps/vinagre { };
|
||||
|
||||
#### Dev http://ftp.gnome.org/pub/GNOME/devtools/
|
||||
|
||||
anjuta = callPackage ./devtools/anjuta { };
|
||||
|
Loading…
Reference in New Issue
Block a user