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: 0f1560fab2cb
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b00b7970e94b
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 17, 2019

  1. nomachine-client: 6.5.6 -> 6.6.8

    (cherry picked from commit 9d1e509)
    talyz authored and etu committed Jun 17, 2019
    Copy the full SHA
    14f8e5d View commit details
  2. nomachine-client: 6.6.8 -> 6.7.6

    (cherry picked from commit 93a6806)
    talyz authored and etu committed Jun 17, 2019
    Copy the full SHA
    5ef01e7 View commit details

Commits on Jun 21, 2019

  1. Merge pull request #63292 from etu/1903-nomachine-client

    [19.03] nomachine-client: 6.5.6 -> 6.7.6
    etu authored Jun 21, 2019
    Copy the full SHA
    b00b797 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/admin/nomachine-client/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/admin/nomachine-client/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ stdenv, lib, file, fetchurl, makeWrapper,
autoPatchelfHook, jsoncpp, libpulseaudio }:
let
versionMajor = "6.5";
versionMajor = "6.7";
versionMinor = "6";
versionBuild_x86_64 = "9";
versionBuild_i686 = "8";
versionBuild_x86_64 = "11";
versionBuild_i686 = "11";
in
stdenv.mkDerivation rec {
pname = "nomachine-client";
@@ -14,12 +14,12 @@ in
if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://download.nomachine.com/download/${versionMajor}/Linux/nomachine_${version}_${versionBuild_x86_64}_x86_64.tar.gz";
sha256 = "07lg5yadxpl5qfvvh067b3kxd8hm3xv95ralm2pyjl4lw6aql46p";
sha256 = "1mka0a7p03y53zsf0srrcj4f7sigda5vndrwqhr0vncc2qws03k0";
}
else if stdenv.hostPlatform.system == "i686-linux" then
fetchurl {
url = "https://download.nomachine.com/download/${versionMajor}/Linux/nomachine_${version}_${versionBuild_i686}_i686.tar.gz";
sha256 = "1a23isw09vicazkrypq0kxbb8qy2i4vxiarrgz5xmasjhiy5999a";
sha256 = "1g94s65bp99nfmzvwv1wasvjhgjbfg9jkc089qimi0lvr8ajabkx";
}
else
throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}";