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
|
||||
, glib, pipewire, systemd, libvncserver, libsecret, libnotify, gdk-pixbuf }:
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, cairo
|
||||
, meson
|
||||
, ninja
|
||||
, pkgconfig
|
||||
, python3
|
||||
, wrapGAppsHook
|
||||
, glib
|
||||
, pipewire
|
||||
, systemd
|
||||
, libvncserver
|
||||
, libsecret
|
||||
, libnotify
|
||||
, gdk-pixbuf
|
||||
, freerdp
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnome-remote-desktop";
|
||||
version = "0.1.8";
|
||||
version = "0.1.9";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.gnome.org";
|
||||
owner = "jadahl";
|
||||
repo = "gnome-remote-desktop";
|
||||
rev = version;
|
||||
sha256 = "1wcvk0w4p0wnqnrjkbwvqcby9dd4nj0cm9cz0fqna31qfjrvb913";
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
hash = "sha256-8iZtp4tBRT7NNRKuzwop3rcMvq16RG/I2sAlEIsJ0M8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkgconfig python3 wrapGAppsHook ];
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
python3
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib pipewire systemd libvncserver libsecret libnotify
|
||||
cairo
|
||||
freerdp
|
||||
gdk-pixbuf # For libnotify
|
||||
glib
|
||||
libnotify
|
||||
libsecret
|
||||
libvncserver
|
||||
pipewire
|
||||
systemd
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
|
|
Loading…
Reference in a new issue