mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
gnome3.gnome-remote-desktop: 0.1.8 -> 0.1.9
* now under GNOME namespace * add cairo and freerdp
This commit is contained in:
parent
c6caf98331
commit
7f15532486
1 changed files with 36 additions and 11 deletions
|
@ -1,23 +1,48 @@
|
||||||
{ stdenv, fetchFromGitLab, meson, ninja, pkgconfig, python3, wrapGAppsHook
|
{ stdenv
|
||||||
, glib, pipewire, systemd, libvncserver, libsecret, libnotify, gdk-pixbuf }:
|
, fetchurl
|
||||||
|
, cairo
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkgconfig
|
||||||
|
, python3
|
||||||
|
, wrapGAppsHook
|
||||||
|
, glib
|
||||||
|
, pipewire
|
||||||
|
, systemd
|
||||||
|
, libvncserver
|
||||||
|
, libsecret
|
||||||
|
, libnotify
|
||||||
|
, gdk-pixbuf
|
||||||
|
, freerdp
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gnome-remote-desktop";
|
pname = "gnome-remote-desktop";
|
||||||
version = "0.1.8";
|
version = "0.1.9";
|
||||||
|
|
||||||
src = fetchFromGitLab {
|
src = fetchurl {
|
||||||
domain = "gitlab.gnome.org";
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
owner = "jadahl";
|
hash = "sha256-8iZtp4tBRT7NNRKuzwop3rcMvq16RG/I2sAlEIsJ0M8=";
|
||||||
repo = "gnome-remote-desktop";
|
|
||||||
rev = version;
|
|
||||||
sha256 = "1wcvk0w4p0wnqnrjkbwvqcby9dd4nj0cm9cz0fqna31qfjrvb913";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkgconfig python3 wrapGAppsHook ];
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkgconfig
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib pipewire systemd libvncserver libsecret libnotify
|
cairo
|
||||||
|
freerdp
|
||||||
gdk-pixbuf # For libnotify
|
gdk-pixbuf # For libnotify
|
||||||
|
glib
|
||||||
|
libnotify
|
||||||
|
libsecret
|
||||||
|
libvncserver
|
||||||
|
pipewire
|
||||||
|
systemd
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
Loading…
Reference in a new issue