diff --git a/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix b/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix index 012090ba079..f96d316fb52 100644 --- a/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix +++ b/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix @@ -7,15 +7,16 @@ stdenv.mkDerivation rec { name = "google-compute-engine-oslogin-${version}"; - version = "1.4.3"; + version = "1.5.3"; + # from packages/google-compute-engine-oslogin/packaging/debian/changelog src = fetchFromGitHub { - repo = "compute-image-packages"; owner = "GoogleCloudPlatform"; - rev = "2ccfe80f162a01b5b7c3316ca37981fc8b3fc32a"; - sha256 = "036g7609ni164rmm68pzi47vrywfz2rcv0ad67gqf331pvlr92x1"; + repo = "compute-image-packages"; + rev = "20190522"; + sha256 = "16jbbrnz49g843h813r408dbvfa2hicf8canxwbfxr2kzhv7ycmm"; }; - sourceRoot = "source/google_compute_engine_oslogin"; + sourceRoot = "source/packages/google-compute-engine-oslogin"; postPatch = '' # change sudoers dir from /var/google-sudoers.d to /run/google-sudoers.d (managed through systemd-tmpfiles) @@ -39,6 +40,8 @@ stdenv.mkDerivation rec { install -Dm755 google_{oslogin_nss_cache,authorized_keys} $out/bin ''; + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = https://github.com/GoogleCloudPlatform/compute-image-packages; description = "OS Login Guest Environment for Google Compute Engine";