c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, vala
|
|
, gettext
|
|
, itstool
|
|
, python3
|
|
, appstream-glib
|
|
, desktop-file-utils
|
|
, wrapGAppsHook
|
|
, glib
|
|
, gtk3
|
|
, libhandy
|
|
, libsecret
|
|
, libxml2
|
|
, gtk-vnc
|
|
, gtk-frdp
|
|
, gnome
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-connections";
|
|
version = "43.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-hdrYL5PAsvYJ/o7H7N7scGAKVWEq/A4/AndMJaC7MJ8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
gettext
|
|
itstool
|
|
python3
|
|
appstream-glib
|
|
desktop-file-utils
|
|
glib # glib-compile-resources
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk-vnc
|
|
gtk3
|
|
libhandy
|
|
libsecret
|
|
libxml2
|
|
gtk-frdp
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x build-aux/meson/postinstall.py
|
|
patchShebangs build-aux/meson/postinstall.py
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/connections";
|
|
description = "A remote desktop client for the GNOME desktop environment";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|