nixpkgs/pkgs/desktops/gnome/apps/gnome-connections/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
2020-10-03 20:59:22 +01:00
, fetchurl
, meson
, ninja
, pkg-config
, vala
, gettext
, itstool
, desktop-file-utils
, wrapGAppsHook3
2020-10-03 20:59:22 +01:00
, glib
, gtk3
, libhandy
, libsecret
2020-10-03 20:59:22 +01:00
, libxml2
, gtk-vnc
, gtk-frdp
, gnome
2020-10-03 20:59:22 +01:00
}:
stdenv.mkDerivation rec {
pname = "gnome-connections";
version = "46.0";
2020-10-03 20:59:22 +01:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
hash = "sha256-+xzqaOeTC73B2yi3zQqaN80xDUtOeHL+gU9QoWqNJdM=";
2020-10-03 20:59:22 +01:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
gettext
itstool
desktop-file-utils
glib # glib-compile-resources
wrapGAppsHook3
2020-10-03 20:59:22 +01:00
];
buildInputs = [
glib
gtk-vnc
gtk3
libhandy
libsecret
2020-10-03 20:59:22 +01:00
libxml2
gtk-frdp
2020-10-03 20:59:22 +01:00
];
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
2020-10-03 20:59:22 +01:00
};
};
meta = with lib; {
2020-10-03 20:59:22 +01:00
homepage = "https://gitlab.gnome.org/GNOME/connections";
description = "Remote desktop client for the GNOME desktop environment";
mainProgram = "gnome-connections";
2020-10-03 20:59:22 +01:00
maintainers = teams.gnome.members;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}