Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4f9d57a32746
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 300a4a654cc2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 2, 2019

  1. Copy the full SHA
    beb3758 View commit details
  2. Merge pull request #56679 from r-ryantm/auto-update/gnome-remote-desktop

    gnome3.gnome-remote-desktop: 0.1.6 -> 0.1.7
    jtojnar authored Mar 2, 2019
    Copy the full SHA
    300a4a6 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/desktops/gnome-3/core/gnome-remote-desktop/default.nix
8 changes: 3 additions & 5 deletions pkgs/desktops/gnome-3/core/gnome-remote-desktop/default.nix
Original file line number Diff line number Diff line change
@@ -2,15 +2,15 @@
, glib, pipewire, systemd, libvncserver, libsecret, libnotify, gdk_pixbuf, gnome3 }:

stdenv.mkDerivation rec {
name = "gnome-remote-desktop-${version}";
version = "0.1.6";
pname = "gnome-remote-desktop";
version = "0.1.7";

src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "jadahl";
repo = "gnome-remote-desktop";
rev = version;
sha256 = "1d49kxhi1bn8ssh6nybg7d6zajqwc653czbsms2d59dbhj8mn75f";
sha256 = "0gmazc8ww0lyhx9iclhi982bkpjsnflrzv4qfm3q6hcy0il21fsc";
};

nativeBuildInputs = [ meson ninja pkgconfig python3 wrapGAppsHook ];
@@ -21,8 +21,6 @@ stdenv.mkDerivation rec {
];

postPatch = ''
substituteInPlace meson.build --replace pipewire-0.1 pipewire-0.2
chmod +x meson_post_install.py # patchShebangs requires executable file
patchShebangs meson_post_install.py
'';