nixpkgs/pkgs/desktops/gnome-3/apps/vinagre/default.nix

35 lines
1,010 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkgconfig, gtk3, gnome3, vte, libxml2, gtk-vnc, intltool
2018-08-24 15:00:10 +02:00
, libsecret, itstool, wrapGAppsHook, librsvg }:
stdenv.mkDerivation rec {
pname = "vinagre";
version = "3.22.0";
src = fetchurl {
url = "mirror://gnome/sources/vinagre/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "cd1cdbacca25c8d1debf847455155ee798c3e67a20903df8b228d4ece5505e82";
};
2018-08-24 15:00:10 +02:00
nativeBuildInputs = [ pkgconfig intltool itstool wrapGAppsHook ];
buildInputs = [
2019-02-13 22:47:50 +01:00
gtk3 vte libxml2 gtk-vnc libsecret gnome3.adwaita-icon-theme librsvg
2018-08-24 15:00:10 +02:00
];
NIX_CFLAGS_COMPILE = "-Wno-format-nonliteral";
2018-08-24 15:00:10 +02:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "vinagre";
attrPath = "gnome3.vinagre";
};
};
meta = with lib; {
description = "Remote desktop viewer for GNOME";
homepage = "https://wiki.gnome.org/Apps/Vinagre";
2018-08-24 15:00:10 +02:00
license = licenses.gpl2Plus;
maintainers = teams.gnome.members;
2018-08-24 15:00:10 +02:00
platforms = platforms.linux;
};
}